Added SpaceLogic, to restore the old logic buttons into. In future it can be used for a more advanced logic editor, with states, behaviour, whatever. We'll see! This commit only adds the backend for new space. Committed this now as reference for when we need another space type. It's still not well plugin-able (dynamic space types), but my idea is to just have a new SpacePlugIn for this, with a neat small API to define all relevant callbacks. Also note the icon for the spacetype is wrong still.
37 lines
919 B
Python
37 lines
919 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
|
|
SConscript(['datafiles/SConscript',
|
|
'space_api/SConscript',
|
|
'util/SConscript',
|
|
'interface/SConscript',
|
|
'animation/SConscript',
|
|
'armature/SConscript',
|
|
'mesh/SConscript',
|
|
'object/SConscript',
|
|
'curve/SConscript',
|
|
'gpencil/SConscript',
|
|
'physics/SConscript',
|
|
'preview/SConscript',
|
|
'space_buttons/SConscript',
|
|
'space_file/SConscript',
|
|
'space_image/SConscript',
|
|
'space_info/SConscript',
|
|
'space_graph/SConscript',
|
|
'space_node/SConscript',
|
|
'space_outliner/SConscript',
|
|
'space_time/SConscript',
|
|
'space_view3d/SConscript',
|
|
'space_sound/SConscript',
|
|
'space_action/SConscript',
|
|
'space_nla/SConscript',
|
|
'space_script/SConscript',
|
|
'space_text/SConscript',
|
|
'space_sequencer/SConscript',
|
|
'space_logic/SConscript',
|
|
'transform/SConscript',
|
|
'screen/SConscript',
|
|
'sculpt_paint/SConscript',
|
|
'uvedit/SConscript'])
|