Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nmspy/data/enums/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,13 +322,13 @@
cGcSeasonSaveStateOnDeath,
cGcPlayerMissionParticipantType,
cGcGameMode,
cGcFreighterNPCType,
cGcNPCNavSubgraphNodeType,
cGcPersistentBaseTypes,
cGcFreighterNPCType,
cGcBuildMenuOption,
cGcLinkNetworkTypes,
cGcNPCHabitationType,
cGcBuildingPlacementErrorTypes,
cGcBuildMenuOption,
cGcBaseBuildingSecondaryMode,
cGcBaseSnapState,
cGcBaseBuildingPartStyle,
Expand Down
60 changes: 30 additions & 30 deletions nmspy/data/enums/external_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -6750,6 +6750,14 @@ class cGcGameMode(IntEnum):
Seasonal = 0x6


class cGcFreighterNPCType(IntEnum):
SquadronPilot = 0x0
FrigateCaptain = 0x1
WorkerBio = 0x2
WorkerTech = 0x3
WorkerIndustry = 0x4


class cGcNPCNavSubgraphNodeType(IntEnum):
Path = 0x0
Connection = 0x1
Expand All @@ -6772,12 +6780,28 @@ class cGcPersistentBaseTypes(IntEnum):
ShipBaseScratch = 0xC


class cGcFreighterNPCType(IntEnum):
SquadronPilot = 0x0
FrigateCaptain = 0x1
WorkerBio = 0x2
WorkerTech = 0x3
WorkerIndustry = 0x4
class cGcBuildMenuOption(IntEnum):
Place = 0x0
ChangeColour = 0x1
FreeRotate = 0x2
Scale = 0x3
SnapRotate = 0x4
Move = 0x5
Duplicate = 0x6
Delete = 0x7
ToggleBuildCam = 0x8
ToggleSnappingAndCollision = 0x9
ToggleSelectionMode = 0xA
ToggleWiringMode = 0xB
ViewRelatives = 0xC
CyclePart = 0xD
PlaceWire = 0xE
CycleRotateMode = 0xF
Flip = 0x10
ToggleCatalogue = 0x11
Purchase = 0x12
FamiliesRotate = 0x13
YFlip = 0x14


class cGcLinkNetworkTypes(IntEnum):
Expand Down Expand Up @@ -6825,30 +6849,6 @@ class cGcBuildingPlacementErrorTypes(IntEnum):
InvalidCorvettePosition = 0x18


class cGcBuildMenuOption(IntEnum):
Place = 0x0
ChangeColour = 0x1
FreeRotate = 0x2
Scale = 0x3
SnapRotate = 0x4
Move = 0x5
Duplicate = 0x6
Delete = 0x7
ToggleBuildCam = 0x8
ToggleSnappingAndCollision = 0x9
ToggleSelectionMode = 0xA
ToggleWiringMode = 0xB
ViewRelatives = 0xC
CyclePart = 0xD
PlaceWire = 0xE
CycleRotateMode = 0xF
Flip = 0x10
ToggleCatalogue = 0x11
Purchase = 0x12
FamiliesRotate = 0x13
YFlip = 0x14


class cGcBaseBuildingSecondaryMode(IntEnum):
ShipStructural = 0x0

Expand Down
Loading