Skip to content

Commit 1c70c3e

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

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

index.bs

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10340,14 +10340,19 @@ 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,
10343+
; Defaults to 1
10344+
? width: js-uint,
10345+
; Defaults to 1
10346+
? height: js-uint,
10347+
; Defaults to 0.0
10348+
? pressure: float,
10349+
; Defaults to 0.0
10350+
? tangentialPressure: float,
10351+
; Defaults to 0
1034710352
? twist: (0..359) .default 0,
10348-
; 0 .. Math.PI / 2
10349-
? altitudeAngle: (0.0..1.5707963267948966) .default 0.0,
10350-
; 0 .. 2 * Math.PI
10353+
; 0 .. Math.PI / 2, defaults to 0.0
10354+
? altitudeAngle: (0.0..1.5707963267948966),
10355+
; 0 .. 2 * Math.PI, defaults to 0.0
1035110356
? azimuthAngle: (0.0..6.283185307179586) .default 0.0,
1035210357
)
1035310358

0 commit comments

Comments
 (0)