mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-13 23:26:04 +00:00
3D Cameras with sweep and animation
This commit is contained in:
parent
4cc7a0c004
commit
7e76edc153
48 changed files with 3211 additions and 1511 deletions
27
Scripts/Actors/3D/AlarmSoundPlayer3D.cs
Normal file
27
Scripts/Actors/3D/AlarmSoundPlayer3D.cs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Actors._3D;
|
||||
|
||||
public partial class AlarmSoundPlayer3D : AudioStreamPlayer3D
|
||||
{
|
||||
public override void _Ready()
|
||||
{
|
||||
if (AlarmManager.Instance is not null)
|
||||
{
|
||||
this.Stream = AlarmManager.Instance.AlarmSound;
|
||||
|
||||
AlarmManager.Instance.AlarmEnabled3D += InstanceOnAlarmEnabled3D;
|
||||
AlarmManager.Instance.AlarmDisabled += InstanceOnAlarmDisabled;
|
||||
}
|
||||
}
|
||||
|
||||
private void InstanceOnAlarmDisabled()
|
||||
{
|
||||
this.Stop();
|
||||
}
|
||||
|
||||
private void InstanceOnAlarmEnabled3D(Vector3 location)
|
||||
{
|
||||
this.Play();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue