Changeset View
Changeset View
Standalone View
Standalone View
oscurart_tools/oscurart_meshes.py
| Context not available. | |||||
| class reConst(Operator): | class reConst(Operator): | ||||
| """Erase vertices bellow cero X position value and rebuilds the symmetry. """ | """Erase vertices below cero X position value and rebuilds the symmetry. """ | ||||
| """It also creates two uv channels, one symmetrical and one asymmetrical""" | """It also creates two uv channels, one symmetrical and one asymmetrical""" | ||||
| bl_idname = "mesh.reconst_osc" | bl_idname = "mesh.reconst_osc" | ||||
| bl_label = "ReConst Mesh" | bl_label = "ReConst Mesh" | ||||
| Context not available. | |||||
| class SelectMenor(Operator): | class SelectMenor(Operator): | ||||
| """Selects the vetex with an N position value on the X axis""" | """Selects the vertex with an N position value on the X axis""" | ||||
| bl_idname = "mesh.select_side_osc" | bl_idname = "mesh.select_side_osc" | ||||
| bl_label = "Select Side" | bl_label = "Select Side" | ||||
| bl_options = {"REGISTER", "UNDO"} | bl_options = {"REGISTER", "UNDO"} | ||||
| Context not available. | |||||
| class rvg(Operator): | class rvg(Operator): | ||||
| bl_idname = "mesh.resym_vertex_weights_osc" | bl_idname = "mesh.resym_vertex_weights_osc" | ||||
| bl_label = "Resym Vertex Weights" | bl_label = "Resym Vertex Weights" | ||||
| bl_description = ("Copies the symetrical weight value of the vertices on the X axys\n" | bl_description = ("Copies the symmetrical weight value of the vertices on the X axys\n" | ||||
| "(It needs the XML map and the Active Object is not in Edit mode)") | "(It needs the XML map and the Active Object is not in Edit mode)") | ||||
| bl_options = {"REGISTER", "UNDO"} | bl_options = {"REGISTER", "UNDO"} | ||||
| Context not available. | |||||
| class OscResymMesh(Operator): | class OscResymMesh(Operator): | ||||
| """Copies the symetrical position of the vertices on the X axys. It needs the XML map""" | """Copies the symmetrical position of the vertices on the X axys. It needs the XML map""" | ||||
| bl_idname = "mesh.resym_mesh" | bl_idname = "mesh.resym_mesh" | ||||
| bl_label = "Resym save Apply XML" | bl_label = "Resym save Apply XML" | ||||
| bl_options = {"REGISTER", "UNDO"} | bl_options = {"REGISTER", "UNDO"} | ||||
| Context not available. | |||||