Skip to content

Instantly share code, notes, and snippets.

@zeffii
Created January 5, 2016 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeffii/248ece121205617c15d0 to your computer and use it in GitHub Desktop.
Save zeffii/248ece121205617c15d0 to your computer and use it in GitHub Desktop.
def draw(self, context):
layout = self.layout
col = layout.column()
col.prop(self.dims, "Height")
col.prop(self.dims, "Width")
col.prop(self.dims, "Length")
# Position
col = layout.column()
col.prop(self, "location")
# Rotation
col = layout.column()
col.prop(self, "rotation")
@zeffii
Copy link
Author

zeffii commented Jan 5, 2016

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment