BlenderKit: fix link to docs ans several small UI tweaks

This commit is contained in:
Vilem Duha 2019-06-23 17:40:25 +02:00
parent 746b673539
commit caf4a3058e
2 changed files with 5 additions and 2 deletions

View File

@ -29,6 +29,7 @@ BLENDERKIT_PLANS = "https://www.blenderkit.com/plans/pricing/"
BLENDERKIT_MANUAL = "https://youtu.be/1hVgcQhIAo8"
BLENDERKIT_MODEL_UPLOAD_INSTRUCTIONS_URL = "https://www.blenderkit.com/docs/upload/"
BLENDERKIT_MATERIAL_UPLOAD_INSTRUCTIONS_URL = "https://www.blenderkit.com/docs/uploading-material/"
BLENDERKIT_BRUSH_UPLOAD_INSTRUCTIONS_URL = "https://www.blenderkit.com/docs/uploading-brush/"
BLENDERKIT_LOGIN_URL = "https://www.blenderkit.com/accounts/login"
BLENDERKIT_OAUTH_LANDING_URL = "/oauth-landing/"
BLENDERKIT_SIGNUP_URL = "https://www.blenderkit.com/accounts/register"

View File

@ -92,6 +92,8 @@ def draw_upload_common(layout, props, asset_type, context):
op.url = paths.BLENDERKIT_MODEL_UPLOAD_INSTRUCTIONS_URL
if asset_type == 'MATERIAL':
op.url = paths.BLENDERKIT_MATERIAL_UPLOAD_INSTRUCTIONS_URL
if asset_type == 'BRUSH':
op.url = paths.BLENDERKIT_BRUSH_UPLOAD_INSTRUCTIONS_URL
row = layout.row(align=True)
if props.upload_state != '':
@ -661,7 +663,7 @@ class VIEW3D_PT_blenderkit_unified(Panel):
return;
if ui_props.asset_type == 'MODEL':
label_multiline(layout, "Uploaded models won't be available in b2.79", icon='ERROR')
# label_multiline(layout, "Uploaded models won't be available in b2.79", icon='ERROR')
if bpy.context.active_object is not None:
draw_panel_model_upload(self, context)
else:
@ -670,7 +672,7 @@ class VIEW3D_PT_blenderkit_unified(Panel):
draw_panel_scene_upload(self, context)
elif ui_props.asset_type == 'MATERIAL':
label_multiline(layout, "Uploaded materials won't be available in b2.79", icon='ERROR')
# label_multiline(layout, "Uploaded materials won't be available in b2.79", icon='ERROR')
if bpy.context.active_object is not None and bpy.context.active_object.active_material is not None:
draw_panel_material_upload(self, context)