Skip to content

Commit bc88960

Browse files
committed
chore: remove pointer defaults
1 parent 42abefe commit bc88960

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

index.bs

+7-7
Original file line numberDiff line numberDiff line change
@@ -10340,15 +10340,15 @@ specified sequence of user input actions.
1034010340
}
1034110341

1034210342
input.PointerCommonProperties = (
10343-
? width: js-uint .default 1,
10344-
? height: js-uint .default 1,
10345-
? pressure: float .default 0.0,
10346-
? tangentialPressure: float .default 0.0,
10347-
? twist: (0..359) .default 0,
10343+
? width: js-uint,
10344+
? height: js-uint,
10345+
? pressure: float,
10346+
? tangentialPressure: float,
10347+
? twist: 0..359,
1034810348
; 0 .. Math.PI / 2
10349-
? altitudeAngle: (0.0..1.5707963267948966) .default 0.0,
10349+
? altitudeAngle: 0.0..1.5707963267948966
1035010350
; 0 .. 2 * Math.PI
10351-
? azimuthAngle: (0.0..6.283185307179586) .default 0.0,
10351+
? azimuthAngle: 0.0..6.283185307179586,
1035210352
)
1035310353

1035410354
input.Origin = "viewport" / "pointer" / input.ElementOrigin

0 commit comments

Comments
 (0)