Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'blender'

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