Esempio n. 1
0
 private static extern void Internal_CreateInstance(NativeHingeJoint instance, ref ScriptCommonJointData commonData,
                                                    ref ScriptHingeJointData data);
Esempio n. 2
0
 private static extern void Internal_CreateInstance(NativeFixedJoint instance, ref ScriptCommonJointData commonData);
Esempio n. 3
0
 public NativeHingeJoint(ScriptCommonJointData commonData, ScriptHingeJointData data)
 {
     Internal_CreateInstance(this, ref commonData, ref data);
 }
Esempio n. 4
0
 private static extern void Internal_CreateInstance(NativeSphericalJoint instance, 
     ref ScriptCommonJointData commonData, ref ScriptSphericalJointData data);
Esempio n. 5
0
 public NativeFixedJoint(ScriptCommonJointData commonData)
 {
     Internal_CreateInstance(this, ref commonData);
 }
Esempio n. 6
0
 public NativeSphericalJoint(ScriptCommonJointData commonData, ScriptSphericalJointData data)
 {
     Internal_CreateInstance(this, ref commonData, ref data);
 }
Esempio n. 7
0
 private static extern void Internal_CreateInstance(NativeFixedJoint instance, ref ScriptCommonJointData commonData);
Esempio n. 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);
 }