示例#1
0
 /// メッシュ操作を生成します。
 public MeshCommand(TSOFile tso, TSOMesh mesh, TSONode selected_node, float weight, WeightOperation weight_op)
 {
     this.tso           = tso;
     this.mesh          = mesh;
     this.selected_node = selected_node;
     this.weight        = weight;
     this.weight_op     = weight_op;
 }
示例#2
0
 /// 頂点操作を生成します。
 public VertexCommand(TSOFile tso, TSONode selected_node, MqoVert vertex, float weight, WeightOperation weight_op)
 {
     this.tso           = tso;
     this.selected_node = selected_node;
     this.vertex        = vertex;
     this.weight        = weight;
     this.weight_op     = weight_op;
 }