Skip to content

Commit

Permalink
chore: change vent sound
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjae11 committed Dec 21, 2024
1 parent efe1625 commit 56101ee
Show file tree
Hide file tree
Showing 5 changed files with 241 additions and 88 deletions.
2 changes: 1 addition & 1 deletion Assets/SWPPT3/Prefabs/Puzzle/Shield.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ AudioSource:
OutputAudioMixerGroup: {fileID: -1235528271599055872, guid: 6280190b476bd43cabe8b653ca9ded11,
type: 2}
m_audioClip: {fileID: 8300000, guid: 4f205a62268514e1d9e7c09064fe009f, type: 3}
m_PlayOnAwake: 1
m_PlayOnAwake: 0
m_Volume: 1
m_Pitch: 1
Loop: 0
Expand Down
2 changes: 1 addition & 1 deletion Assets/SWPPT3/Prefabs/Puzzle/Vent.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ AudioSource:
OutputAudioMixerGroup: {fileID: -1235528271599055872, guid: 6280190b476bd43cabe8b653ca9ded11,
type: 2}
m_audioClip: {fileID: 8300000, guid: 85e890e800369403ea5af9b10adecb94, type: 3}
m_PlayOnAwake: 1
m_PlayOnAwake: 0
m_Volume: 1
m_Pitch: 1
Loop: 0
Expand Down
32 changes: 16 additions & 16 deletions Assets/SWPPT3/Prefabs/UI/Screen/InGame.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -2965,6 +2965,20 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
_player: {fileID: 5865617930821872779, guid: b63037d539f98bc42a98baf0281987bd, type: 3}
_playerScript: {fileID: 11400000, guid: f12859c2ce46745c0a5a97778dd768ae, type: 2}
_radialUI: {fileID: 8488859834885466518}
_playTimeTmp: {fileID: 2410004514160317197}
_metalNumTmp: {fileID: 2895323979621877206}
_rubberNumTmp: {fileID: 818430995981542076}
_stageTmp: {fileID: 2488253089315095944}
_rubberButton: {fileID: 8488859835786804939}
_metalButton: {fileID: 8488859835077312272}
_slimeButton: {fileID: 8488859835809235302}
_rubberHover: {fileID: 8488859834268363996}
_metalHover: {fileID: 8488859835629220295}
_slimeHover: {fileID: 8488859834755351846}
_escAudio: {fileID: 2855394994218449052}
_radialAudio: {fileID: 4280881946641731381}
_onTryingPauseStatusChanged:
m_PersistentCalls:
m_Calls:
Expand Down Expand Up @@ -3040,20 +3054,6 @@ MonoBehaviour:
m_StringArgument:
m_BoolArgument: 0
m_CallState: 2
_playTimeTmp: {fileID: 2410004514160317197}
_metalNumTmp: {fileID: 2895323979621877206}
_rubberNumTmp: {fileID: 818430995981542076}
_stageTmp: {fileID: 2488253089315095944}
_radialUI: {fileID: 8488859834885466518}
_rubberButton: {fileID: 8488859835786804939}
_metalButton: {fileID: 8488859835077312272}
_slimeButton: {fileID: 8488859835809235302}
_rubberHover: {fileID: 8488859834268363996}
_metalHover: {fileID: 8488859835629220295}
_slimeHover: {fileID: 8488859834755351846}
_playerScript: {fileID: 11400000, guid: f12859c2ce46745c0a5a97778dd768ae, type: 2}
_escAudio: {fileID: 2855394994218449052}
_radialAudio: {fileID: 4280881946641731381}
--- !u!82 &2855394994218449052
AudioSource:
m_ObjectHideFlags: 0
Expand All @@ -3066,7 +3066,7 @@ AudioSource:
OutputAudioMixerGroup: {fileID: -1235528271599055872, guid: 6280190b476bd43cabe8b653ca9ded11,
type: 2}
m_audioClip: {fileID: 8300000, guid: 33b6cd7837c7642958dac012307e9086, type: 3}
m_PlayOnAwake: 1
m_PlayOnAwake: 0
m_Volume: 1
m_Pitch: 1
Loop: 0
Expand Down Expand Up @@ -3163,7 +3163,7 @@ AudioSource:
OutputAudioMixerGroup: {fileID: -1235528271599055872, guid: 6280190b476bd43cabe8b653ca9ded11,
type: 2}
m_audioClip: {fileID: 8300000, guid: 4ec625193cd6741178fe6aae5b037712, type: 3}
m_PlayOnAwake: 1
m_PlayOnAwake: 0
m_Volume: 1
m_Pitch: 1
Loop: 0
Expand Down
3 changes: 1 addition & 2 deletions Assets/SWPPT3/Scripts/Main/Prop/Vent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ public class Vent : StateDst

protected override void OnSourceStateChanged(StateSource src, bool state)
{
state = !state;
State = state;
animator.SetBool("IsClosed",state);
animator.SetBool("IsClosed",!State);
}
}
}
Loading

0 comments on commit 56101ee

Please sign in to comment.