[Bf-committers] CVS commit: blender/source/blender/python/api2_2x BGL.c BGL.h Blender.c Blender.h Camera.c Camera.h Draw.c Draw.h Image.c Image.h Lamp.c Lamp.h Object.c Text.c Text.h

Willian Padovani Germano bf-committers@blender.org
Tue, 13 May 2003 03:54:40 +0200 (CEST)


ianwill (Willian Padovani Germano) 2003/05/13 03:54:40 CEST

  Modified files:
    blender/source/blender/python/api2_2x BGL.c BGL.h Blender.c 
                                          Blender.h Camera.c 
                                          Camera.h Draw.c Draw.h 
                                          Image.c Image.h Lamp.c 
                                          Lamp.h Object.c Text.c 
                                          Text.h 
  
  Log:
  * 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.
  
  Revision  Changes    Path
  1.2       +12 -5     blender/source/blender/python/api2_2x/BGL.c
  1.2       +3 -2      blender/source/blender/python/api2_2x/BGL.h
  1.10      +26 -1     blender/source/blender/python/api2_2x/Blender.c
  1.3       +15 -1     blender/source/blender/python/api2_2x/Blender.h
  1.4       +61 -32    blender/source/blender/python/api2_2x/Camera.c
  1.3       +1 -0      blender/source/blender/python/api2_2x/Camera.h
  1.2       +86 -54    blender/source/blender/python/api2_2x/Draw.c
  1.3       +5 -7      blender/source/blender/python/api2_2x/Draw.h
  1.4       +68 -38    blender/source/blender/python/api2_2x/Image.c
  1.4       +1 -0      blender/source/blender/python/api2_2x/Image.h
  1.4       +92 -70    blender/source/blender/python/api2_2x/Lamp.c
  1.3       +3 -0      blender/source/blender/python/api2_2x/Lamp.h
  1.6       +1 -1      blender/source/blender/python/api2_2x/Object.c
  1.2       +63 -35    blender/source/blender/python/api2_2x/Text.c
  1.2       +1 -0      blender/source/blender/python/api2_2x/Text.h