| 953 | |
| 954 | |
| 955 | class EditorAttributeInputFloat(EditorAttributeInputGeneric): |
| 956 | def on_attribute_changed(self, emitter, value): |
| 957 | super(EditorAttributeInputFloat, self).on_attribute_changed( |
| 958 | self, float(value)) |
| 959 | |
| 960 | |
| 961 | class EditorAttributeInputInt(EditorAttributeInputGeneric): |