PSSGManager.RenderDataSource.RenderDataSource C# (CSharp) Méthode

RenderDataSource() public méthode

public RenderDataSource ( string name, CustomVertex vertices, ushort indices ) : System
name string
vertices CustomVertex
indices ushort
Résultat System
        public RenderDataSource(string name, CustomVertex.PositionNormalColored[] vertices, ushort[] indices)
        {
            this.name = name;
            this.vertices = vertices;
            this.indices = indices;
        }