private static extern void Internal_CreateInstance(NativeHingeJoint instance, ref ScriptCommonJointData commonData,
                                                    ref ScriptHingeJointData data);
Beispiel #2
0
 private static extern void Internal_CreateInstance(NativeFixedJoint instance, ref ScriptCommonJointData commonData);
 public NativeHingeJoint(ScriptCommonJointData commonData, ScriptHingeJointData data)
 {
     Internal_CreateInstance(this, ref commonData, ref data);
 }
 private static extern void Internal_CreateInstance(NativeSphericalJoint instance, 
     ref ScriptCommonJointData commonData, ref ScriptSphericalJointData data);
Beispiel #5
0
 public NativeFixedJoint(ScriptCommonJointData commonData)
 {
     Internal_CreateInstance(this, ref commonData);
 }
 public NativeSphericalJoint(ScriptCommonJointData commonData, ScriptSphericalJointData data)
 {
     Internal_CreateInstance(this, ref commonData, ref data);
 }
Beispiel #7
0
 private static extern void Internal_CreateInstance(NativeFixedJoint instance, ref ScriptCommonJointData commonData);
Beispiel #8
0
 public NativeFixedJoint(ScriptCommonJointData commonData)
 {
     Internal_CreateInstance(this, ref commonData);
 }
 private static extern void Internal_CreateInstance(NativeSphericalJoint instance,
                                                    ref ScriptCommonJointData commonData, ref ScriptSphericalJointData data);
 public NativeSphericalJoint(ScriptCommonJointData commonData, ScriptSphericalJointData data)
 {
     Internal_CreateInstance(this, ref commonData, ref data);
 }