예제 #1
0
    private void AddToTicklist(Actor actor)
    {
        var boundedActor = new BoundedActor(actor, boundaries, this);

        tickList.Add(boundedActor);
        //Debug.Log("Effectively Added " + actor.Name + " to TickList");
    }
예제 #2
0
 private void AddToRemoveList(BoundedActor boundedActor)
 {
     AddUniqueToList(removeList, boundedActor);
     //Debug.Log("Effectively Added " + boundedActor.actor.Name + " to RemoveList");
 }