public override bool Equals(object other) { if (other is ObjectNodeReference) { ObjectNodeReference p = (ObjectNodeReference)other; return(Index == p.Index); } else { return(false); } }
public ObjectNode GetObjectNode(ObjectNodeReference reference) { return(objectNodes[reference.Index]); }
public ref T this[ObjectNodeReference index] => ref Data[index.Index];
public EffectObjectNode(RenderEffect renderEffect, ObjectNodeReference objectNode) : this() { RenderEffect = renderEffect; ObjectNode = objectNode; }