Axiom.Core.Entity.AttachObjectImpl C# (CSharp) Method

AttachObjectImpl() protected method

Internal implementation of attaching a 'child' object to this entity and assign the parent node to the child entity.
protected AttachObjectImpl ( Axiom.Core.MovableObject sceneObject, Axiom.Animating.TagPoint tagPoint ) : void
sceneObject Axiom.Core.MovableObject Object to attach.
tagPoint Axiom.Animating.TagPoint TagPoint to attach the object to.
return void
		protected void AttachObjectImpl( MovableObject sceneObject, TagPoint tagPoint )
		{
			this.childObjectList.Add( sceneObject.Name, sceneObject );
			sceneObject.NotifyAttached( tagPoint, true );
		}