Blender Git Commit Log
Git Commits -> Revision b9f6d66
Revision b9f6d66 by Willian Padovani Germano (master) May 13, 2003, 01:54 (GMT) |
* Added 3 missing functions, 2 of them called by blender/src/drawtext.c: Callbacks registered with Draw.Register in Python are called now. That should fix submodule Blender.Draw. * Added a few other missing functions to BPY_interface.c * Finished implementing Get() function for Camera, Lamp, Image and Text: Both the .Get(name) and .Get() cases are handled now. * Added function Blender.ReleaseGlobalDict(): This function should give script writers control over whether the global Python Interpreter Dict should be cleared after the script is run (default is to clear). This is a test. |
Commit Details:
Full Hash: b9f6d66328b8b96d4f1fe29f761a99fbe531c4de
SVN Revision: 746
Parent Commit: eca049b
Lines Changed: +752, -389
17 Modified Paths:
/source/blender/python/api2_2x/BGL.c (+12, -5) (Diff)
/source/blender/python/api2_2x/BGL.h (+3, -2) (Diff)
/source/blender/python/api2_2x/Blender.c (+26, -1) (Diff)
/source/blender/python/api2_2x/Blender.h (+15, -1) (Diff)
/source/blender/python/api2_2x/Camera.c (+61, -32) (Diff)
/source/blender/python/api2_2x/Camera.h (+1, -0) (Diff)
/source/blender/python/api2_2x/Draw.c (+86, -54) (Diff)
/source/blender/python/api2_2x/Draw.h (+5, -7) (Diff)
/source/blender/python/api2_2x/Image.c (+68, -38) (Diff)
/source/blender/python/api2_2x/Image.h (+1, -0) (Diff)
/source/blender/python/api2_2x/Lamp.c (+92, -70) (Diff)
/source/blender/python/api2_2x/Lamp.h (+3, -0) (Diff)
/source/blender/python/api2_2x/Object.c (+1, -1) (Diff)
/source/blender/python/api2_2x/Text.c (+63, -35) (Diff)
/source/blender/python/api2_2x/Text.h (+1, -0) (Diff)
/source/blender/python/BPY_extern.h (+8, -2) (Diff)
/source/blender/python/BPY_interface.c (+306, -141) (Diff)
/source/blender/python/api2_2x/BGL.h (+3, -2) (Diff)
/source/blender/python/api2_2x/Blender.c (+26, -1) (Diff)
/source/blender/python/api2_2x/Blender.h (+15, -1) (Diff)
/source/blender/python/api2_2x/Camera.c (+61, -32) (Diff)
/source/blender/python/api2_2x/Camera.h (+1, -0) (Diff)
/source/blender/python/api2_2x/Draw.c (+86, -54) (Diff)
/source/blender/python/api2_2x/Draw.h (+5, -7) (Diff)
/source/blender/python/api2_2x/Image.c (+68, -38) (Diff)
/source/blender/python/api2_2x/Image.h (+1, -0) (Diff)
/source/blender/python/api2_2x/Lamp.c (+92, -70) (Diff)
/source/blender/python/api2_2x/Lamp.h (+3, -0) (Diff)
/source/blender/python/api2_2x/Object.c (+1, -1) (Diff)
/source/blender/python/api2_2x/Text.c (+63, -35) (Diff)
/source/blender/python/api2_2x/Text.h (+1, -0) (Diff)
/source/blender/python/BPY_extern.h (+8, -2) (Diff)
/source/blender/python/BPY_interface.c (+306, -141) (Diff)