
http://www.hotlinkfiles.com/files/24030 ... v/test.zip
PureGDK 1.1.1
====================
Bug fixes:
- Fixed a bug introduced in the final release which broke dbLoadMusic, dbLoadImage, dbLoadAnimation, dbLoadDVDAnimation when compiling with the debugger.
- The PureGDK compiler will now correctly display all POLINK errors instead of just "Error: Linker Error".
- The PureGDK compiler can now parse non-ASCII encoded source files.
- Fixed a bug which would cause the PureBasic compiler to throw a POLINK error in some cases were the Import keyword was used.
Is there any reason for an update? I'm not aware of any problems with this library.Onyx wrote:Any update on the EZRo_obj commands?
Code: Select all
OpenWindow(0,0,0,640,480,"DarkBasic Professional - PureGDK",#PB_Window_SystemMenu|#PB_Window_ScreenCentered)
hDBWnd=OpenDBWnd(WindowID(0),0,0,640,480)
dbSyncRate(60)
dbBackdropOn()
dbColorBackdrop(dbRGB(0,0,0))
rotateflag=1
dbMakeObjectCube(2,2)
dbColorObject(2,dbRGB(255,255,0))
dbPositionObject(2,8,0,0)
dbMakeObjectSphere(1,10)
dbColorObject(1,dbRGB(0,2550,0))
Repeat
EZro_ObjOrbit(2,rotateflag,0,0,0,0,1,0,0.1)
dbSync()
Until WindowEvent()=#PB_Event_CloseWindow Or dbKeyState(#VK_ESCAPE)
End
Code: Select all
sync on : sync rate 0 : hide mouse:cls 0
rotateflag=1
make object cube 2,2
color object 2,rgb(255,255,0)
position object 2,8,0,0
make object sphere 1,10
color object 1,rgb(0,255,0)
while mouseclick()=0
EZro_ObjOrbit 2, RotateFlag, 0, 0, 0, 0, 1, 0, 0.1
sync
endwhile
delete objects 1,2
end
I don't appreciate that comment. If you're not familiar with it I've already stated in the help file:Onyx wrote:Since you supposedly support EZRotate Enhanced ..
Considering there are well over 1,000 commands across all of the supported libraries it's not possible to test each and every one.Each of these command libraries has been tested for functionality. Not every command has been tested and functionality of every command is not guaranteed. If you do encounter a problem getting any of these plugins to work with PureGDK please contact support@puregdk.com.
I'll gadly fix this bug with the EZRotate library. But first, can you clarify if it's only the EZro_Obj commands that are missing? The more detailed your report is the faster I'll be able to fix this.Onyx wrote:Note the EZro_ObjOrbit command is just one of many EZRotate Object commands that are missing from PureGDK.