-
- Downloads
Blender's debug mode only worked on startup:
- G.f's G_DEBUG flag was being erased in blenkernel/intern/blender.c's setup_app_data: G.f= bfd->globalf // added a line above it to fix this: if (G.f & G_DEBUG) bfd->globalf |=G_DEBUG; G.f= bfd->globalf; BPython: - debug info now only shown if Blender is started with '-d' option - added ~/.blender/scripts to modules sys.path - added two new functions to Blender.sys: basename and splitext - added doc for Blender.sys, updated other docs
Showing
- source/blender/blenkernel/intern/blender.c 1 addition, 0 deletionssource/blender/blenkernel/intern/blender.c
- source/blender/python/BPY_extern.h 1 addition, 0 deletionssource/blender/python/BPY_extern.h
- source/blender/python/BPY_interface.c 9 additions, 11 deletionssource/blender/python/BPY_interface.c
- source/blender/python/BPY_menus.c 40 additions, 25 deletionssource/blender/python/BPY_menus.c
- source/blender/python/api2_2x/Sys.c 109 additions, 32 deletionssource/blender/python/api2_2x/Sys.c
- source/blender/python/api2_2x/Sys.h 15 additions, 3 deletionssource/blender/python/api2_2x/Sys.h
- source/blender/python/api2_2x/doc/Blender.py 8 additions, 15 deletionssource/blender/python/api2_2x/doc/Blender.py
- source/blender/python/api2_2x/doc/Object.py 18 additions, 1 deletionsource/blender/python/api2_2x/doc/Object.py
- source/blender/python/api2_2x/doc/Registry.py 11 additions, 9 deletionssource/blender/python/api2_2x/doc/Registry.py
- source/blender/python/api2_2x/doc/Sys.py 65 additions, 0 deletionssource/blender/python/api2_2x/doc/Sys.py
Loading
Please register or sign in to comment