| 1234567891011121314151617181920212223242526 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using bs;
- namespace bs.Editor
- {
- /** @addtogroup Inspectors
- * @{
- */
- /// <summary>
- /// Renders an inspector for the <see cref="FixedJoint"/> component.
- /// </summary>
- [CustomInspector(typeof(FixedJoint))]
- internal class FixedJointInspector : JointInspector
- {
- /// <inheritdoc/>
- protected internal override void Initialize()
- {
- FixedJoint joint = (FixedJoint) InspectedObject;
- BuildGUI(joint, false);
- }
- }
- /** @} */
- }
|