This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/source/blender/imbuf/intern/oiio/openimageio_api.cpp b/source/blender/imbuf/intern/oiio/openimageio_api.cpp | |
index 11bf454..a68da9a 100644 | |
--- a/source/blender/imbuf/intern/oiio/openimageio_api.cpp | |
+++ b/source/blender/imbuf/intern/oiio/openimageio_api.cpp | |
@@ -176,6 +176,8 @@ int imb_is_a_photoshop(const char *filename) | |
".psd", | |
".pdd", | |
".psb", | |
+ ".dng", | |
+ ".cr2", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for http://blender.stackexchange.com/q/56741/935 | |
bl_info = { | |
'version': (1, 0), | |
'blender': (2, 75, 0), | |
'author': 'sambler', | |
'name': 'Custom Object Factory', | |
'location': 'blender', | |
'description': 'Create multiple custom operators that create objects' , |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# made in response to | |
# http://blender.stackexchange.com/q/49552/935 | |
bl_info = { | |
"version": (1, 0), | |
"blender": (2, 75, 0), | |
"author": "sambler", | |
"name": "testing addon", | |
"location": "blender", | |
"description": "test showing material nodes in toolshelf" , |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# made in response to | |
# http://blender.stackexchange.com/q/46461/935 | |
bl_info = { | |
"version": (1, 0), | |
"blender": (2, 75, 0), | |
"author": "sambler", | |
"name": "Timed edit mode", | |
"description": "Use tab to go into edit mode, if tab is held and mouse is moved then show the mode pie menu." , |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# made in response to | |
# http://blender.stackexchange.com/q/44983/935 | |
bl_info = { | |
"version": (1, 0), | |
"blender": (2, 75, 0), | |
"name": "testing play pause", | |
"description": """testing addon""" , | |
"category": "test", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# made in response to | |
# http://blender.stackexchange.com/q/44721/935 | |
# render frame ranges for each nla strip with only the one strip active | |
output_dir = '//renders/' | |
scene = bpy.context.scene | |
# make a list of strips used in the NLA | |
# strips are found in - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# made in response to | |
# http://blender.stackexchange.com/q/44427/935 | |
bl_info = { | |
"version": (1, 0), | |
"blender": (2, 75, 0), | |
"author": "sambler", | |
"name": "testing split view", | |
"description": """testing split view""" , |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from | |
# http://blender.stackexchange.com/q/44014/935 | |
bl_info = { | |
"version": (1, 0), | |
"blender": (2, 75, 0), | |
"name": "Macbook Options", | |
"description": """Some user settings to assist macbook users.""" , |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# made in response to | |
# http://blender.stackexchange.com/q/44022/935 | |
import bpy | |
from bl_ui.properties_data_modifier import DATA_PT_modifiers | |
class myModifiersPanel(bpy.types.Panel): | |
bl_label = "Object Modifiers" | |
bl_idname = "OBJECT_PT_mymodifiers" |