feat(rcf): append collection, object and material replication

This commit is contained in:
Swann Martinez
2019-03-25 18:51:54 +01:00
parent 8d47715af2
commit dab6ca681f
3 changed files with 116 additions and 11 deletions

View File

@ -30,10 +30,14 @@ class SessionSettingsPanel(bpy.types.Panel):
row.operator("session.create", text="HOST")
else:
box = row.box()
box.prop(net_settings, "ip", text="server ip")
box = box.row()
box.label(text="load data:")
box.prop(net_settings, "load_data", text="")
row = box.row()
row.prop(net_settings, "ip", text="server ip")
row = box.row()
row.label(text="load data:")
row.prop(net_settings, "load_data", text="")
row = box.row()
row.label(text="clear scene:")
row.prop(net_settings, "clear_scene", text="")
row = layout.row()
row.operator("session.join", text="CONNECT")