| 123456789101112131415161718192021 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /** @addtogroup Physics
- * @{
- */
- /// <summary>Type of force that can be applied to a rigidbody at an arbitrary point.</summary>
- public enum PointForceMode
- {
- /// <summary>Value applied is a force.</summary>
- Force = 0,
- /// <summary>Value applied is an impulse (a direct change in its linear or angular momentum).</summary>
- Impulse = 1
- }
- /** @} */
- }
|