/// <summary>
 /// Constructor that just stores the parent and adds this object to the parent's child list
 /// </summary>
 /// <param name="parent"></param>
 public AbstractSceneObject(SceneObjectParent parent)
 {
     this.parent = parent;
     parent.AddChild(this);
 }