mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
32 lines
1.2 KiB
C#
32 lines
1.2 KiB
C#
using System;
|
|
using UnityAtoms.BaseAtoms;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Reference of type `GameObject`. Inherits from `AtomReference<GameObject, GameObjectPair, GameObjectConstant, GameObjectVariable, GameObjectEvent, GameObjectPairEvent, GameObjectGameObjectFunction, GameObjectVariableInstancer, AtomCollection, AtomList>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class GameObjectReference : AtomReference<
|
|
GameObject,
|
|
GameObjectPair,
|
|
GameObjectConstant,
|
|
GameObjectVariable,
|
|
GameObjectEvent,
|
|
GameObjectPairEvent,
|
|
GameObjectGameObjectFunction,
|
|
GameObjectVariableInstancer,
|
|
AtomCollection,
|
|
AtomList>, IEquatable<GameObjectReference>
|
|
{
|
|
public GameObjectReference() : base() { }
|
|
public GameObjectReference(GameObject value) : base(value) { }
|
|
public bool Equals(GameObjectReference other) { return base.Equals(other); }
|
|
protected override bool ValueEquals(GameObject other)
|
|
{
|
|
return (this.Value == null && other == null) || this.Value != null && other != null && this.Value.GetInstanceID() == other.GetInstanceID();
|
|
}
|
|
}
|
|
}
|