UnityEngine.PhysicsMaterial2D.Internal_Create C# (CSharp) Method

Internal_Create() private method

private Internal_Create ( [ mat, string name ) : void
mat [
name string
return void
        private static extern void Internal_Create([Writable] PhysicsMaterial2D mat, string name);

Usage Example

コード例 #1
0
 public PhysicsMaterial2D(string name)
 {
     PhysicsMaterial2D.Internal_Create(this, name);
 }
All Usage Examples Of UnityEngine.PhysicsMaterial2D::Internal_Create