You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: misc/godot.d.ts
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -900,25 +900,25 @@ declare module godot {
900
900
a: number;
901
901
902
902
/** HSV hue value (range 0 to 1). */
903
-
// h: number;
903
+
h: number;
904
904
905
905
/** HSV saturation value (range 0 to 1). */
906
-
// s: number;
906
+
s: number;
907
907
908
908
/** HSV value (range 0 to 1). */
909
-
// v: number;
909
+
v: number;
910
910
911
911
/** Red value (range 0 to 255). */
912
-
// r8: number;
912
+
r8: number;
913
913
914
914
/** Green value (range 0 to 255). */
915
-
// g8: number;
915
+
g8: number;
916
916
917
917
/** Blue value (range 0 to 255). */
918
-
// b8: number;
918
+
b8: number;
919
919
920
920
/** Alpha value (range 0 to 255). */
921
-
// a8: number;
921
+
a8: number;
922
922
923
923
924
924
/** Returns a new color resulting from blending this color over another. If the color is opaque, the result is also opaque. The second color may have a range of alpha values.
0 commit comments