mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-11 12:35:54 +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
24
Scripts/Actors/3D/SecurityCamera3D.cs
Normal file
24
Scripts/Actors/3D/SecurityCamera3D.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Actors._3D;
|
||||
|
||||
public partial class SecurityCamera3D : Destructible3D
|
||||
{
|
||||
[Export] public StringName SweepAnimation { get; private set; } = "SweepLoop";
|
||||
|
||||
[Signal]
|
||||
public delegate void AnimationStartEventHandler(string animationName);
|
||||
|
||||
public override void _Ready()
|
||||
{
|
||||
if (Engine.IsEditorHint()) return;
|
||||
EmitSignalAnimationStart(SweepAnimation);
|
||||
}
|
||||
|
||||
public void OnBodySighted(Node3D body)
|
||||
{
|
||||
if (Engine.IsEditorHint()) return;
|
||||
GD.Print($"{body.Name} Sighted!");
|
||||
AlarmManager.Instance?.SoundAlarm(this.GlobalPosition);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue