This commit is contained in:
2024-08-07 09:45:15 +02:00
commit 9d7b1e71ce
88 changed files with 21647 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/**
* All possible MinecraftCameraPresetsTypes
*/
export enum MinecraftCameraPresetsTypes {
FirstPerson = "minecraft:first_person",
Free = "minecraft:free",
ThirdPerson = "minecraft:third_person",
ThirdPersonFront = "minecraft:third_person_front",
}
/**
* Union type equivalent of the MinecraftCameraPresetsTypes enum.
*/
export type MinecraftCameraPresetsTypesUnion = keyof typeof MinecraftCameraPresetsTypes;