GLBasic forum

Main forum => Bug Reports => Topic started by: 9940 on 2009-Jul-19

Title: X_DRAWAXES on WiZ
Post by: 9940 on 2009-Jul-19
X_DRAWAXES doesn't seem work on gp2x wiz

Code (glbasic) Select

WHILE TRUE
X_MAKE3D 1, 1000, 45
X_CAMERA 0, 0, -30,   0 ,0 ,0
X_DRAWAXES 0, 0, 0
SHOWSCREEN
WEND


X_OBJ... works well
Title: Re: X_DRAWAXES on WiZ
Post by: Hemlos on 2009-Jul-20
hmm wonder why..

see if this works:

Code (glbasic) Select
X_LINE 0,0,0, 10,0,0, 1, RGB(255,0,0)
X_LINE 0,0,0, 0,10,0, 1, RGB(0,255,0)
X_LINE 0,0,0, 0,0,10, 1, RGB(0,0,255)
Title: Re: X_DRAWAXES on WiZ
Post by: Kitty Hello on 2009-Jul-20
no, 3D lines are not supported so far.
Title: Re: X_DRAWAXES on WiZ
Post by: 9940 on 2009-Jul-20
Not only lines...
However in v7 there will be a better support for 3d on wiz?
Title: Re: X_DRAWAXES on WiZ
Post by: Kitty Hello on 2009-Jul-20
the rest should work. If not, post an example for the bug.
Title: Re: X_DRAWAXES on WiZ
Post by: 9940 on 2009-Jul-20
I have downloaded http://www.glbasic.com/data/games/Shadows.zip and compiled it for wiz.
Result blackscreen...