BEPUphysics.EntityStateManagement.EntityStateWriteBuffer.EnqueueAngularVelocity C# (CSharp) Метод

EnqueueAngularVelocity() публичный Метод

Enqueues a change to an entity's angular velocity.
public EnqueueAngularVelocity ( Entity entity, Microsoft.Xna.Framework.Vector3 &newAngularVelocity ) : void
entity BEPUphysics.Entities.Entity Entity to target.
newAngularVelocity Microsoft.Xna.Framework.Vector3 New angular velocity of the entity.
Результат void
        public void EnqueueAngularVelocity(Entity entity, ref Vector3 newAngularVelocity)
        {
            stateChanges.Enqueue(new EntityStateChange { target = entity, vector = newAngularVelocity, targetField = TargetField.AngularVelocity });
        }