Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Pulowski Shelter #765

Merged
merged 1 commit into from
Dec 24, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,18 @@
noRot: true
sprite: _Nuclear14/Structures/Misc/shelternew.rsi
layers:
- state: shelternewopen
map: ["base"]
- state: open
map: ["enum.DoorVisualLayers.Base"]
- type: Door
bumpOpen: false
clickOpen: true
closeTimeOne: 0.2
closeTimeTwo: 0.6
openTimeOne: 0.6
openTimeTwo: 0.2
openingAnimationTime: 1.3
closingAnimationTime: 1.3
occludes: false
- type: InteractionOutline
- type: Cryostorage
- type: Physics
Expand All @@ -34,19 +44,10 @@
visuals:
enum.CryostorageVisuals.Full:
base:
True: { state: shelternewclosedoccupied }
False: { state: shelternewopen }
True: { state: closed }
False: { state: open }
- type: AnimationPlayer
- type: Door
bumpOpen: false
clickOpen: true
closeTimeOne: 0.2
closeTimeTwo: 0.6
openTimeOne: 0.6
openTimeTwo: 0.2
openingAnimationTime: 1.3
closingAnimationTime: 1.3
occludes: false


- type: entity
parent: N14PulowskiShelterNew
Expand All @@ -58,13 +59,8 @@
noRot: true
sprite: _Nuclear14/Structures/Misc/shelterworn.rsi
layers:
- state: shelterwornopen
- type: GenericVisualizer
visuals:
enum.CryostorageVisuals.Full:
base:
True: { state: shelterwornclosedoccupied }
False: { state: shelterwornopen }
- state: open
map: ["enum.DoorVisualLayers.Base"]
- type: Door
bumpOpen: false
clickOpen: true
Expand All @@ -74,4 +70,10 @@
openTimeTwo: 0.2
openingAnimationTime: 1.0
closingAnimationTime: 1.6
occludes: false
occludes: false
- type: GenericVisualizer
visuals:
enum.CryostorageVisuals.Full:
base:
True: { state: closed }
False: { state: open }
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
"name": "shelternewclosedempty"
},
{
"name": "shelternewclosedoccupied"
"name": "closed"
},
{
"name": "shelternewopen"
"name": "open"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
"name": "shelterwornclosedempty"
},
{
"name": "shelterwornclosedoccupied"
"name": "closed"
},
{
"name": "shelterwornopen"
"name": "open"
}
]
}
Loading