Search found 10 matches

by xenopsyx
Mon Mar 20, 2006 12:02 pm
Forum: Game Programming
Topic: how many entity do you create?
Replies: 2
Views: 1709

oh~

Thank you~!
I don't know why I did 99x99... :cry:
by xenopsyx
Sat Mar 18, 2006 1:43 pm
Forum: Coding Questions
Topic: How to hide mouse cursor?
Replies: 20
Views: 7077

Thank you Trond

It is good to me.
Thanks :lol:
by xenopsyx
Sat Mar 18, 2006 12:19 pm
Forum: Coding Questions
Topic: How to hide mouse cursor?
Replies: 20
Views: 7077

How to hide mouse cursor?

I want to know to hide mouse cursor.
I've found it. but I din't find.
by xenopsyx
Sat Mar 18, 2006 1:53 am
Forum: Game Programming
Topic: how many entity do you create?
Replies: 2
Views: 1709

how many entity do you create?

I am testing CreateEntity in mesh.pb edited with...

Code: Select all

For i = 0 To 99
  For j = 0 To 99
    CreateEntity(i*10+j, MeshID(0), MaterialID(Random(1)), i, Random(9)*0.1, j)
  Next
Next
Run the code, and there is no 100 entitys?
It's bug in purebasic?
by xenopsyx
Mon Mar 06, 2006 1:12 am
Forum: Coding Questions
Topic: how to reset a entity's rotation
Replies: 2
Views: 904

how to reset a entity's rotation

RotateEntity() is like MoveEntity().
I want to find some Rotation Function that set x,y,z like EntityLocate().
can you help me?
by xenopsyx
Thu Mar 02, 2006 4:45 pm
Forum: Game Programming
Topic: Attachment
Replies: 5
Views: 2272

^^thankyou again

thanks for your reply.
it is helpful to me.
by xenopsyx
Thu Mar 02, 2006 8:24 am
Forum: Game Programming
Topic: Attachment
Replies: 5
Views: 2272

Attachment

Can purebasic engine3D attach mesh to mesh?
i.e, guns&hands, body&head, and so on...

I really want to know.
by xenopsyx
Thu Mar 02, 2006 2:51 am
Forum: Coding Questions
Topic: I cannot drawing sprites on 3D
Replies: 12
Views: 2885

thank you Fred

your code works well...
exception define.f, clearscreen(rgb(0,0,0))
thankyou
by xenopsyx
Wed Mar 01, 2006 3:53 pm
Forum: Coding Questions
Topic: I cannot drawing sprites on 3D
Replies: 12
Views: 2885

mesh+sprite?

i tested examples, and merged examples. that is below

; mesh.pd
...
...
If InitEngine3D()

Add3DArchive("Data\" , #PB_3DArchive_FileSystem)
Add3DArchive("Data\Skybox.zip", #PB_3DArchive_Zip)

InitSprite()
InitKeyboard()
InitMouse()
...
;sprirte.pb
LoadSprite(0, "Data\PureBasic.bmp", 0 ...
by xenopsyx
Wed Mar 01, 2006 3:14 pm
Forum: Coding Questions
Topic: I cannot drawing sprites on 3D
Replies: 12
Views: 2885

I cannot drawing sprites on 3D

I do ... a merging mesh.pb + sprite.pb
but sprite cannot be drawed with 3d mesh
Is it impossible?