コード例 #1
0
ファイル: AbcAPI.cs プロジェクト: ashesphere/PettingAppliance
 [DllImport(Abci.Lib, BestFitMapping = false, ThrowOnUnmappableChar = true)] public static extern aeProperty aeNewProperty(IntPtr self, string name, aePropertyType type);
コード例 #2
0
ファイル: AbcAPI.cs プロジェクト: ashesphere/PettingAppliance
 public aeProperty NewProperty(string name, aePropertyType type)
 {
     return(NativeMethods.aeNewProperty(self, name, type));
 }
コード例 #3
0
 [DllImport("abci")] public static extern aeProperty  aeNewProperty(aeObject parent, string name, aePropertyType type);
コード例 #4
0
ファイル: AbcAPI.cs プロジェクト: sineraw/AlembicForUnity
 [DllImport("abci")] static extern aeProperty aeNewProperty(IntPtr self, string name, aePropertyType type);
コード例 #5
0
ファイル: AbcAPI.cs プロジェクト: sineraw/AlembicForUnity
 public aeProperty NewProperty(string name, aePropertyType type)
 {
     return(aeNewProperty(self, name, type));
 }
コード例 #6
0
ファイル: AbcAPI.cs プロジェクト: tlaedre/AlembicImporter
 [DllImport("AlembicExporter")] public static extern aeProperty  aeNewProperty(aeObject parent, string name, aePropertyType type);