コード例 #1
0
ファイル: Model3D.cs プロジェクト: bblpny/Quad64
 void Export.Reference <MeshData> .API(Export.Exporter ex)
 {
     ex.Ref(texture);
     ex.Array(vertices);
     ex.Array(texCoord);
     ex.Array(colors);
     ex.Array(indices);
 }
コード例 #2
0
ファイル: Exporter.cs プロジェクト: bblpny/csharputilities
 void ValueInterface <T> .Array(T[] v)
 {
     exporter.Array <T>(v);
 }
コード例 #3
0
 void Export.Reference <CollisionTriangleList> .API(Export.Exporter ex)
 {
     ex.Value(id);
     ex.Array(indices);
 }