TFormPoint

Started by JBR, December 22, 2019, 01:19:35

Previous topic - Next topic

JBR

Hi using B3D the command TFormPoint(b.x#, b.y#, b.z#, 0, G_Camera) works fine.

I'm converting to BMax and Minib3d and it throw up an error on the '0' - should be an entity.

I've done dummy = createcube() and tried TFormPoint(b.x#, b.y#, b.z#, dummy, G_Camera) and it seems to work fine.

I'm no expert but is this ok.

Thanks in advance, Jim.



col

#1
Hiya,

Instead of using '0' for null object instances Max uses 'Null'.

TFormPoint(b.x#, b.y#, b.z#, Null, G_Camera)
https://github.com/davecamp

"When you observe the world through social media, you lose your faith in it."

JBR