Wireframe and no wireframe

Blitz3D Forums/Blitz3D Beginners Area/Wireframe and no wireframe

Kiyoshi(Posted 2011) [#1]
Just a quick question, is it possible to render in wireframe for some meshes but not others? Like I want the floor, walls, and ceiling normal, but I want enemies to be wireframe. Thanks! :D

EDIT: Never mind, I feel stupid for not checking the command reference first. Disregard the question!! :O

Last edited 2011


GfK(Posted 2011) [#2]
Multipass rendering is what you need.

Pseudocode:
Wireframe False
CameraClsMode cam,true,true
Hide baddies
Show environment
RenderWorld()
Wireframe True
CameraClsMode cam,false,false
Show baddies
Hide environment
RenderWorld()
Flip

[edit]
EDIT: Never mind, I feel stupid for not checking the command reference first. Disregard the question!! :O
Oh. :/

Last edited 2011


MikhailV(Posted 2011) [#3]
@Zaraki-Sun: Or use FastExt library without multipass rendering :)


Yue(Posted 2011) [#4]
FastText Cool =) Efect Easy.