mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:25:35 +00:00
17 lines
No EOL
393 B
C#
17 lines
No EOL
393 B
C#
using Godot;
|
|
using Godot.Collections;
|
|
|
|
namespace Cirno.Scripts.Components;
|
|
|
|
public partial class PlayerDetection : Area2D
|
|
{
|
|
public InteractionController CachedPlayer => _cachedPlayer;
|
|
|
|
protected InteractionController _cachedPlayer;
|
|
public virtual bool IsPlayerInRange { get; set; }
|
|
|
|
public virtual bool IsPlayerInSight(uint collisionMask)
|
|
{
|
|
return false;
|
|
}
|
|
} |