| 123456789101112131415161718 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- namespace BansheeEngine
- {
- /// <summary>
- /// Physics joint that will maintain a fixed distance and orientation between its two attached bodies.
- /// </summary>
- public sealed class FixedJoint : Joint
- {
- /// <inheritdoc/>
- internal override NativeJoint CreateNative()
- {
- NativeFixedJoint joint = new NativeFixedJoint();
- return joint;
- }
- }
- }
|