Changeset View
Changeset View
Standalone View
Standalone View
oscurart_tools/oscurart_shapes.py
| Context not available. | |||||
| eval(OBJECTMODE) | eval(OBJECTMODE) | ||||
| bpy.ops.object.text_add(location=(gx, 0, 0)) | bpy.ops.object.text_add(location=(gx, 0, 0)) | ||||
| gx = gx + 2.2 | gx += 2.2 | ||||
| gy = gy + 2.2 | gy += 2.2 | ||||
| texto = bpy.context.object | texto = bpy.context.object | ||||
| texto.data.body = keyblock.name | texto.data.body = keyblock.name | ||||
| Context not available. | |||||
| eval(OBJECTMODE) | eval(OBJECTMODE) | ||||
| bpy.ops.object.text_add(location=(0, 0, 0)) | bpy.ops.object.text_add(location=(0, 0, 0)) | ||||
| gx = gx + 2.2 | gx += 2.2 | ||||
| gy = gy + 2.2 | gy += 2.2 | ||||
| texto = bpy.context.object | texto = bpy.context.object | ||||
| texto.data.body = keyblock.name | texto.data.body = keyblock.name | ||||
| texto.name = "TEXTO_" + keyblock.name | texto.name = "TEXTO_" + keyblock.name | ||||
| Context not available. | |||||