@rbxts/types 1.0.799 → 1.0.800
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/generated/enums.d.ts +55 -2
- package/package.json +1 -1
|
@@ -14566,9 +14566,17 @@ declare namespace Enum {
|
|
|
14566
14566
|
|
|
14567
14567
|
export const PS5: PS5;
|
|
14568
14568
|
|
|
14569
|
+
export interface MetaOS extends globalThis.EnumItem {
|
|
14570
|
+
Name: "MetaOS";
|
|
14571
|
+
Value: 20;
|
|
14572
|
+
EnumType: typeof globalThis.Enum.Platform;
|
|
14573
|
+
}
|
|
14574
|
+
|
|
14575
|
+
export const MetaOS: MetaOS;
|
|
14576
|
+
|
|
14569
14577
|
export interface None extends globalThis.EnumItem {
|
|
14570
14578
|
Name: "None";
|
|
14571
|
-
Value:
|
|
14579
|
+
Value: 21;
|
|
14572
14580
|
EnumType: typeof globalThis.Enum.Platform;
|
|
14573
14581
|
}
|
|
14574
14582
|
|
|
@@ -14576,7 +14584,7 @@ declare namespace Enum {
|
|
|
14576
14584
|
|
|
14577
14585
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Platform>;
|
|
14578
14586
|
}
|
|
14579
|
-
export type Platform = Platform.Windows | Platform.OSX | Platform.IOS | Platform.Android | Platform.XBoxOne | Platform.PS4 | Platform.PS3 | Platform.XBox360 | Platform.WiiU | Platform.NX | Platform.Ouya | Platform.AndroidTV | Platform.Chromecast | Platform.Linux | Platform.SteamOS | Platform.WebOS | Platform.DOS | Platform.BeOS | Platform.UWP | Platform.PS5 | Platform.None;
|
|
14587
|
+
export type Platform = Platform.Windows | Platform.OSX | Platform.IOS | Platform.Android | Platform.XBoxOne | Platform.PS4 | Platform.PS3 | Platform.XBox360 | Platform.WiiU | Platform.NX | Platform.Ouya | Platform.AndroidTV | Platform.Chromecast | Platform.Linux | Platform.SteamOS | Platform.WebOS | Platform.DOS | Platform.BeOS | Platform.UWP | Platform.PS5 | Platform.MetaOS | Platform.None;
|
|
14580
14588
|
|
|
14581
14589
|
export namespace PlaybackState {
|
|
14582
14590
|
export interface Begin extends globalThis.EnumItem {
|
|
@@ -21814,6 +21822,51 @@ declare namespace Enum {
|
|
|
21814
21822
|
}
|
|
21815
21823
|
export type VRControllerModelMode = VRControllerModelMode.Disabled | VRControllerModelMode.Transparent;
|
|
21816
21824
|
|
|
21825
|
+
export namespace VRDeviceType {
|
|
21826
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
21827
|
+
Name: "Unknown";
|
|
21828
|
+
Value: 0;
|
|
21829
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21830
|
+
}
|
|
21831
|
+
|
|
21832
|
+
export const Unknown: Unknown;
|
|
21833
|
+
|
|
21834
|
+
export interface OculusRift extends globalThis.EnumItem {
|
|
21835
|
+
Name: "OculusRift";
|
|
21836
|
+
Value: 1;
|
|
21837
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21838
|
+
}
|
|
21839
|
+
|
|
21840
|
+
export const OculusRift: OculusRift;
|
|
21841
|
+
|
|
21842
|
+
export interface HTCVive extends globalThis.EnumItem {
|
|
21843
|
+
Name: "HTCVive";
|
|
21844
|
+
Value: 2;
|
|
21845
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21846
|
+
}
|
|
21847
|
+
|
|
21848
|
+
export const HTCVive: HTCVive;
|
|
21849
|
+
|
|
21850
|
+
export interface ValveIndex extends globalThis.EnumItem {
|
|
21851
|
+
Name: "ValveIndex";
|
|
21852
|
+
Value: 3;
|
|
21853
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21854
|
+
}
|
|
21855
|
+
|
|
21856
|
+
export const ValveIndex: ValveIndex;
|
|
21857
|
+
|
|
21858
|
+
export interface OculusQuest extends globalThis.EnumItem {
|
|
21859
|
+
Name: "OculusQuest";
|
|
21860
|
+
Value: 4;
|
|
21861
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21862
|
+
}
|
|
21863
|
+
|
|
21864
|
+
export const OculusQuest: OculusQuest;
|
|
21865
|
+
|
|
21866
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRDeviceType>;
|
|
21867
|
+
}
|
|
21868
|
+
export type VRDeviceType = VRDeviceType.Unknown | VRDeviceType.OculusRift | VRDeviceType.HTCVive | VRDeviceType.ValveIndex | VRDeviceType.OculusQuest;
|
|
21869
|
+
|
|
21817
21870
|
export namespace VRLaserPointerMode {
|
|
21818
21871
|
export interface Disabled extends globalThis.EnumItem {
|
|
21819
21872
|
Name: "Disabled";
|