|
| enum | FactorAdditionType { Multiply
, Add
} |
| |
| enum | MessageDialogButton { Button1
, Button2
} |
| |
| enum | AimState { InProgress
, Cancelled
, Completed
} |
| |
| enum | BlockDigMethod { None
, Shovel
, Quarry
, Hack
} |
| |
| enum | BreathingMode { Air
, Water
} |
| |
| enum | BuildConfiguration { Debug
, Release
} |
| |
| enum | CommunityContentMode { Disabled
, Strict
, Normal
, ShowAll
} |
| |
| enum | CreatureCategory {
LandPredator = 1
, LandOther = 1 << 1
, WaterPredator = 1 << 2
, WaterOther = 1 << 3
,
Bird = 1 << 4
} |
| |
| enum | DragMode { AllItems
, SingleItem
, HalfItems
} |
| |
| enum | DrawBlockMode { World
, FirstPerson
, ThirdPerson
, UI
} |
| |
| enum | ElectricConnectorDirection {
Top
, Left
, Bottom
, Right
,
In
} |
| |
| enum | ElectricConnectorType { Input
, Output
, InputOutput
} |
| |
| enum | EnvironmentBehaviorMode { Living
, Static
} |
| |
| enum | ExternalContentType {
Unknown
, Directory
, World
, BlocksTexture
,
CharacterSkin
, FurniturePack
, Mod
, ModList
} |
| |
| enum | FoodType {
None
, Meat
, Fish
, Fruit
,
Grass
, Bread
} |
| |
| enum | FurnitureInteractionMode {
None
, Multistate
, ElectricButton
, ElectricSwitch
,
ConnectedMultistate
} |
| |
| enum | GameMode {
Creative
, Harmless
, Survival
, Challenging
,
Cruel
, Adventure
} |
| |
| enum | GlowPointType { Round
, Square
, HorizontalRectangle
, VerticalRectangle
} |
| |
| enum | GuiSize {
Smallest
, Smaller
, Normal
, Large
,
Larger
} |
| |
| enum | LayoutDirection { Horizontal
, Vertical
} |
| |
| enum | LookControlMode { Pad
, EntireScreen
, SplitTouch
} |
| |
| enum | ModelRenderingMode { Solid
, AlphaThreshold
, TransparentBeforeWater
, TransparentAfterWater
} |
| |
| enum | MoveControlMode { Pad
, Buttons
} |
| |
| enum | ParticleBillboardingMode : byte { Camera
, Vertical
, Horizontal
, None
} |
| |
| enum | PistonMode { Pushing
, Pulling
, StrictPulling
} |
| |
| enum | PlayerClass { Male
, Female
} |
| |
| enum | PrecipitationType { Rain
, Snow
} |
| |
| enum | ProjectileStoppedAction { TurnIntoPickable
, Disappear
, DoNothing
} |
| |
| enum | RaycastMode { Digging
, Interaction
, Gathering
} |
| |
| enum | ResolutionMode { Low
, Medium
, High
} |
| |
| enum | Season { Summer
, Autumn
, Winter
, Spring
} |
| |
| enum | SkyRenderingMode { Full
, NoClouds
, Disabled
} |
| |
| enum | SpawnLocationType { Surface
, Cave
, Water
} |
| |
| enum | StartingPositionMode { Easy
, Medium
, Hard
} |
| |
| enum | TerrainChunkState {
NotLoaded
, InvalidContents1
, InvalidContents2
, InvalidContents3
,
InvalidContents4
, InvalidLight
, InvalidPropagatedLight
, InvalidVertices1
,
InvalidVertices2
, Valid
} |
| |
| enum | TerrainGenerationMode { Continent
, Island
, FlatContinent
, FlatIsland
} |
| |
| enum | TextOrientation { Horizontal
, VerticalLeft
} |
| |
| enum | TimeOfDayMode {
Changing
, Day
, Night
, Sunrise
,
Sunset
} |
| |
| enum | TouchInputType { Tap
, Hold
, Move
} |
| |
| enum | TreeType {
Oak
, Birch
, Spruce
, TallSpruce
,
Mimosa
, Poplar
} |
| |
| enum | UpdateOrder {
Reset = -100
, SubsystemPlayers = -20
, Input = -10
, Default = 0
,
Locomotion = 1
, Body = 2
, CreatureModels = 10
, FirstPersonModels = 20
,
BlocksScanner = 99
, Terrain = 100
, Views = 200
, BlockHighlight = 201
} |
| |
| enum | VrController { Left
, Right
} |
| |
| enum | VrControllerButton {
Trigger
, Grip
, Menu
, Touchpad
,
TouchpadCenter
, TouchpadLeft
, TouchpadRight
, TouchpadUp
,
TouchpadDown
} |
| |
| enum | VrEye { Left
, Right
} |
| |
| enum | LoadOrder { Survivalcraft = -2147483648
, ThemeMod = -16384
, Default = 0
, HelpfulMod = 16384
} |
| |
| enum | OriginalExternalContentType {
Unknown
, Directory
, World
, BlocksTexture
,
CharacterSkin
, FurniturePack
} |
| |
| enum | ScreenLayout {
Single
, DoubleVertical
, DoubleHorizontal
, DoubleOpposite
,
TripleVertical
, TripleHorizontal
, TripleEven
, TripleOpposite
,
Quadruple
, QuadrupleOpposite
} |
| |
| enum | ScreenshotSize { ScreenSize
, FullHD
} |
| |
| enum | WidgetAlignment { Near
, Center
, Far
, Stretch
} |
| |
| enum | WidgetInputDevice {
None = 0
, Keyboard = 1
, MultiKeyboard1 = 1 << 1
, MultiKeyboard2 = 1 << 2
,
MultiKeyboard3 = 1 << 3
, MultiKeyboard4 = 1 << 4
, Mouse = 1 << 5
, MultiMouse1 = 1 << 6
,
MultiMouse2 = 1 << 7
, MultiMouse3 = 1 << 8
, MultiMouse4 = 1 << 9
, Touch = 1 << 10
,
GamePad1 = 1 << 11
, GamePad2 = 1 << 12
, GamePad3 = 1 << 13
, GamePad4 = 1 << 14
,
VrControllers = 1 << 15
, MultiKeyboards = MultiKeyboard1 | MultiKeyboard2 | MultiKeyboard3 | MultiKeyboard4
, MultiMice = MultiMouse1 | MultiMouse2 | MultiMouse3 | MultiMouse4
, Gamepads = GamePad1 | GamePad2 | GamePad3 | GamePad4
,
All = Keyboard | Mouse | Touch | Gamepads | VrControllers
} |
| |