2009-11-21 21:39:20 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2009-11-28 23:37:56 +00:00
|
|
|
#
|
2009-11-21 21:39:20 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2009-11-28 23:37:56 +00:00
|
|
|
#
|
2009-11-21 21:39:20 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-11-21 21:39:20 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
2009-12-13 14:38:30 +00:00
|
|
|
# <pep8 compliant>
|
|
|
|
|
2009-11-21 21:39:20 +00:00
|
|
|
import bpy
|
|
|
|
import os
|
|
|
|
|
2009-12-13 14:38:30 +00:00
|
|
|
|
2009-11-22 13:15:21 +00:00
|
|
|
class AddPresetBase(bpy.types.Operator):
|
|
|
|
'''Base preset class, only for subclassing
|
2009-11-28 23:37:56 +00:00
|
|
|
subclasses must define
|
2009-11-22 13:15:21 +00:00
|
|
|
- preset_values
|
2009-11-27 18:55:59 +00:00
|
|
|
- preset_subdir '''
|
2009-11-22 13:15:21 +00:00
|
|
|
bl_idname = "render.preset_add"
|
|
|
|
bl_label = "Add Render Preset"
|
|
|
|
|
2009-12-13 14:38:30 +00:00
|
|
|
name = bpy.props.StringProperty(name="Name", description="Name of the preset, used to make the path name", maxlen=64, default="")
|
2009-11-28 23:37:56 +00:00
|
|
|
|
2009-11-22 13:15:21 +00:00
|
|
|
def _as_filename(self, name): # could reuse for other presets
|
|
|
|
for char in " !@#$%^&*(){}:\";'[]<>,./?":
|
|
|
|
name = name.replace('.', '_')
|
|
|
|
return name.lower()
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
|
|
|
|
if not self.properties.name:
|
2009-12-24 19:50:43 +00:00
|
|
|
return {'FINISHED'}
|
2009-11-22 13:15:21 +00:00
|
|
|
|
|
|
|
filename = self._as_filename(self.properties.name) + ".py"
|
|
|
|
|
|
|
|
target_path = bpy.utils.preset_paths(self.preset_subdir)[0] # we need some way to tell the user and system preset path
|
|
|
|
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
path = os.path.join(target_path, filename)
|
|
|
|
if getattr(self, "save_keyconfig", True):
|
|
|
|
bpy.ops.wm.keyconfig_export(path=path, kc_name=self.properties.name)
|
|
|
|
file_preset = open(path, 'a')
|
|
|
|
file_preset.write("wm.active_keyconfig = kc\n\n")
|
|
|
|
else:
|
|
|
|
file_preset = open(path, 'w')
|
2009-11-28 23:37:56 +00:00
|
|
|
|
2009-11-22 13:15:21 +00:00
|
|
|
for rna_path in self.preset_values:
|
2010-02-07 13:56:36 +00:00
|
|
|
value = eval(rna_path)
|
|
|
|
if type(value) == str:
|
|
|
|
value = "'%s'" % value
|
|
|
|
|
|
|
|
file_preset.write("%s = %s\n" % (rna_path, value))
|
2009-11-22 13:15:21 +00:00
|
|
|
|
|
|
|
file_preset.close()
|
|
|
|
|
2009-12-24 19:50:43 +00:00
|
|
|
return {'FINISHED'}
|
2009-11-22 13:15:21 +00:00
|
|
|
|
|
|
|
def invoke(self, context, event):
|
|
|
|
wm = context.manager
|
2009-12-07 00:16:57 +00:00
|
|
|
#crashes, TODO - fix
|
|
|
|
#return wm.invoke_props_popup(self, event)
|
|
|
|
|
2009-11-22 13:15:21 +00:00
|
|
|
wm.invoke_props_popup(self, event)
|
2009-12-24 21:17:14 +00:00
|
|
|
return {'RUNNING_MODAL'}
|
2009-11-21 23:55:14 +00:00
|
|
|
|
|
|
|
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
class ExecutePreset(bpy.types.Operator):
|
|
|
|
''' Executes a preset '''
|
|
|
|
bl_idname = "script.execute_preset"
|
|
|
|
bl_label = "Execute a Python Preset"
|
|
|
|
|
|
|
|
path = bpy.props.StringProperty(name="Path", description="Path of the Python file to execute", maxlen=512, default="")
|
|
|
|
preset_name = bpy.props.StringProperty(name="Preset Name", description="Name of the Preset being executed", default="")
|
|
|
|
menu_idname = bpy.props.StringProperty(name="Menu ID Name", description="ID name of the menu this was called from", default="")
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
# change the menu title to the most recently chosen option
|
2010-04-14 07:58:33 +00:00
|
|
|
preset_class = getattr(bpy.types, self.properties.menu_idname)
|
|
|
|
preset_class.bl_label = self.properties.preset_name
|
2010-04-17 19:05:53 +00:00
|
|
|
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
# execute the preset using script.python_file_run
|
|
|
|
bpy.ops.script.python_file_run(path=self.properties.path)
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
|
|
|
|
2009-11-21 23:55:14 +00:00
|
|
|
class AddPresetRender(AddPresetBase):
|
2010-02-10 22:18:00 +00:00
|
|
|
'''Add a Render Preset'''
|
2009-11-21 21:39:20 +00:00
|
|
|
bl_idname = "render.preset_add"
|
|
|
|
bl_label = "Add Render Preset"
|
2009-11-21 23:55:14 +00:00
|
|
|
name = AddPresetBase.name
|
|
|
|
|
|
|
|
preset_values = [
|
2010-02-23 12:48:35 +00:00
|
|
|
"bpy.context.scene.render.resolution_x",
|
|
|
|
"bpy.context.scene.render.resolution_y",
|
|
|
|
"bpy.context.scene.render.pixel_aspect_x",
|
|
|
|
"bpy.context.scene.render.pixel_aspect_y",
|
|
|
|
"bpy.context.scene.render.fps",
|
|
|
|
"bpy.context.scene.render.fps_base",
|
|
|
|
"bpy.context.scene.render.resolution_percentage",
|
|
|
|
"bpy.context.scene.render.fields",
|
|
|
|
"bpy.context.scene.render.field_order",
|
|
|
|
"bpy.context.scene.render.fields_still",
|
2009-11-21 21:39:20 +00:00
|
|
|
]
|
|
|
|
|
2009-11-22 13:15:21 +00:00
|
|
|
preset_subdir = "render"
|
2009-11-21 23:55:14 +00:00
|
|
|
|
|
|
|
|
2009-11-22 00:22:29 +00:00
|
|
|
class AddPresetSSS(AddPresetBase):
|
2010-02-10 22:18:00 +00:00
|
|
|
'''Add a Subsurface Scattering Preset'''
|
2009-11-22 00:22:29 +00:00
|
|
|
bl_idname = "material.sss_preset_add"
|
2009-11-22 10:02:32 +00:00
|
|
|
bl_label = "Add SSS Preset"
|
2009-11-22 00:22:29 +00:00
|
|
|
name = AddPresetBase.name
|
|
|
|
|
|
|
|
preset_values = [
|
|
|
|
"bpy.context.material.subsurface_scattering.back",
|
|
|
|
"bpy.context.material.subsurface_scattering.color[0]",
|
|
|
|
"bpy.context.material.subsurface_scattering.color[1]",
|
|
|
|
"bpy.context.material.subsurface_scattering.color[2]",
|
|
|
|
"bpy.context.material.subsurface_scattering.color_factor",
|
|
|
|
"bpy.context.material.subsurface_scattering.error_tolerance",
|
|
|
|
"bpy.context.material.subsurface_scattering.front",
|
|
|
|
"bpy.context.material.subsurface_scattering.ior",
|
|
|
|
"bpy.context.material.subsurface_scattering.radius[0]",
|
|
|
|
"bpy.context.material.subsurface_scattering.radius[1]",
|
|
|
|
"bpy.context.material.subsurface_scattering.radius[2]",
|
|
|
|
"bpy.context.material.subsurface_scattering.scale",
|
|
|
|
"bpy.context.material.subsurface_scattering.texture_factor",
|
|
|
|
]
|
|
|
|
|
2009-11-22 13:15:21 +00:00
|
|
|
preset_subdir = "sss"
|
2009-11-28 23:37:56 +00:00
|
|
|
|
2009-12-13 14:38:30 +00:00
|
|
|
|
2009-11-22 10:32:37 +00:00
|
|
|
class AddPresetCloth(AddPresetBase):
|
2010-02-10 22:18:00 +00:00
|
|
|
'''Add a Cloth Preset'''
|
2009-11-22 10:32:37 +00:00
|
|
|
bl_idname = "cloth.preset_add"
|
|
|
|
bl_label = "Add Cloth Preset"
|
|
|
|
name = AddPresetBase.name
|
2009-11-28 23:37:56 +00:00
|
|
|
|
2009-11-22 10:32:37 +00:00
|
|
|
preset_values = [
|
2009-11-22 11:33:44 +00:00
|
|
|
"bpy.context.cloth.settings.quality",
|
|
|
|
"bpy.context.cloth.settings.mass",
|
|
|
|
"bpy.context.cloth.settings.structural_stiffness",
|
|
|
|
"bpy.context.cloth.settings.bending_stiffness",
|
|
|
|
"bpy.context.cloth.settings.spring_damping",
|
|
|
|
"bpy.context.cloth.settings.air_damping",
|
2009-11-22 10:32:37 +00:00
|
|
|
]
|
2009-11-28 23:37:56 +00:00
|
|
|
|
2009-11-22 13:15:21 +00:00
|
|
|
preset_subdir = "cloth"
|
2009-11-22 00:22:29 +00:00
|
|
|
|
2010-02-07 13:56:36 +00:00
|
|
|
|
|
|
|
class AddPresetSunSky(AddPresetBase):
|
2010-02-10 22:18:00 +00:00
|
|
|
'''Add a Sky & Atmosphere Preset'''
|
2010-02-07 13:56:36 +00:00
|
|
|
bl_idname = "lamp.sunsky_preset_add"
|
|
|
|
bl_label = "Add Sunsky Preset"
|
|
|
|
name = AddPresetBase.name
|
|
|
|
|
|
|
|
preset_values = [
|
|
|
|
"bpy.context.object.data.sky.atmosphere_turbidity",
|
|
|
|
"bpy.context.object.data.sky.sky_blend_type",
|
|
|
|
"bpy.context.object.data.sky.sky_blend",
|
|
|
|
"bpy.context.object.data.sky.horizon_brightness",
|
|
|
|
"bpy.context.object.data.sky.spread",
|
|
|
|
"bpy.context.object.data.sky.sky_color_space",
|
|
|
|
"bpy.context.object.data.sky.sky_exposure",
|
|
|
|
"bpy.context.object.data.sky.sun_brightness",
|
|
|
|
"bpy.context.object.data.sky.sun_size",
|
|
|
|
"bpy.context.object.data.sky.backscattered_light",
|
|
|
|
"bpy.context.object.data.sky.sun_intensity",
|
|
|
|
"bpy.context.object.data.sky.atmosphere_inscattering",
|
|
|
|
"bpy.context.object.data.sky.atmosphere_extinction",
|
|
|
|
]
|
|
|
|
|
|
|
|
preset_subdir = "sunsky"
|
|
|
|
|
2010-04-17 19:05:53 +00:00
|
|
|
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
class AddPresetInteraction(AddPresetBase):
|
|
|
|
'''Add an Application Interaction Preset'''
|
|
|
|
bl_idname = "wm.interaction_preset_add"
|
|
|
|
bl_label = "Add Interaction Preset"
|
|
|
|
name = AddPresetBase.name
|
|
|
|
save_keyconfig = True
|
2010-04-17 19:05:53 +00:00
|
|
|
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
preset_values = [
|
|
|
|
"bpy.context.user_preferences.edit.drag_immediately",
|
|
|
|
"bpy.context.user_preferences.edit.insertkey_xyz_to_rgb",
|
|
|
|
"bpy.context.user_preferences.inputs.select_mouse",
|
|
|
|
"bpy.context.user_preferences.inputs.zoom_style",
|
|
|
|
"bpy.context.user_preferences.inputs.zoom_axis",
|
|
|
|
"bpy.context.user_preferences.inputs.view_rotation",
|
|
|
|
"bpy.context.user_preferences.inputs.invert_zoom_direction",
|
2010-04-19 01:50:30 +00:00
|
|
|
"bpy.context.user_preferences.inputs.emulate_numpad",
|
|
|
|
"bpy.context.user_preferences.inputs.emulate_3_button_mouse",
|
|
|
|
"bpy.context.user_preferences.inputs.continuous_mouse",
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
preset_subdir = "interaction"
|
2010-02-07 13:56:36 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
classes = [
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
ExecutePreset,
|
2010-02-14 11:21:21 +00:00
|
|
|
AddPresetRender,
|
|
|
|
AddPresetSSS,
|
|
|
|
AddPresetCloth,
|
* Interaction Presets
This adds a new presets menu in the splash screen and the Input section of
User Preferences to choose a preset interaction style, consisting of key configurations
and also other user preferences such as select mouse button, view rotation style, etc.
Currently, just 'Blender' and 'Maya' presets are included, hopefully we can have more
presets contributed (and maintained!) by the community.
It's best to keep these presets minimal to avoid too many key conflicts. In the Maya one
I changed the view manipulation key/mouse combos and also the transform
manipulator keys, not much more than that.
To save an interaction preset, open the user preferences Input section, and press the
[ + ] button next to the presets menu. It will save out a .py file containing any edited key
maps and navigation preferences to the presets/interaction folder in your scripts folder.
---
Part of this commit changes the way that key maps are exported/displayed in
preferences - now partial key configs are allowed. Previously it would export/import the
entire key configuration, regardless of whether individual key maps were edited or not
(which would make them more susceptible to conflicts in unexpected areas).
(note, in blender terminology, a key map is a category of key items, such as
'Object Mode' or 'View 2d'.)
Now, the export and the UI display work in a similar way to how key maps are
processed internally - Locally edited key maps (after pressing the 'Edit' button) are
processed first, falling back to other key maps in the current key config, and then falling
back to the default key config. So it's possible for a key config to only include a few
key maps, and the rest just gets pulled from the default key config. The preferences
UI display works like this too behind the scenes in deciding what to show users,
however using it is just like it was before, the complexity is hidden.
2010-04-14 06:27:50 +00:00
|
|
|
AddPresetSunSky,
|
|
|
|
AddPresetInteraction]
|
2010-02-14 11:21:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
def register():
|
|
|
|
register = bpy.types.register
|
|
|
|
for cls in classes:
|
|
|
|
register(cls)
|
|
|
|
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
def unregister():
|
|
|
|
unregister = bpy.types.unregister
|
|
|
|
for cls in classes:
|
|
|
|
unregister(cls)
|
|
|
|
|
2010-02-16 09:55:07 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
register()
|