Advertising
advertising
related pastes to tag 'blender'
- 2082978 - Miscellany: python keyboard blender
-
- import bpy
- USER_KEYCONFIG = 2
- wm = bpy.context.window_manager
- # border selection
- for k in wm.keyconfigs[USER_KEYCONFIG].keymaps.find('Gesture Border').keymap_items:
- if k.propvalue=='SELECT' and k.type=='LEFTMOUSE' and k.value=='RELEASE':
- 915428 - jesterKing: blender scons
-
- WITH_BF_VERSE = 'true'
- WITH_BF_FFMPEG = 'false' # currently doesn't work with msvc!
- WITH_BF_OPENEXR = 'true'
- BF_OPENEXR_LIBPATH = '${BF_OPENEXR}/lib_vs2005'
- WITH_BF_GAMEENGINE = 'true'
- WITH_BF_QUICKTIME = 'true'
- WITH_BF_PLAYER = 'true'
- 844574 - svn-blender: svn blender
-
- Linking program ==> 'blender'
- /home/drc/svn-blender/build/linux2/lib/libsrc.a(editobject.o): In function `enter_editmode':
- editobject.c:(.text+0x83bb): undefined reference to `mesh_pmv_off'
- /home/drc/svn-blender/build/linux2/lib/libsrc.a(editobject.o): In function `apply_objects_locrot':
- editobject.c:(.text+0x85ac): undefined reference to `Mat3ToScalef'
- /home/drc/svn-blender/build/linux2/lib/libsrc.a(usiblender.o): In function `init_userdef_file':
- usiblender.c:(.text+0x14fa): undefined reference to `init_colorband'
- usiblender.c:(.text+0x1596): undefined reference to `vDM_ColorBand_store'
- 822436 - CopyRenderSettings: python blender
-
- #CopyRenderSettings 0.1
- from Blender import Scene as Sc
- curscene= Sc.GetCurrent()
- context= curscene.getRenderingContext()
- ivars= dir(context)
- scenes= Sc.Get()