PDA

View Full Version : simple script problem


cdinic
02-08-2003, 01:34 AM
any idea why this script isn't working.. I just want a 200 by 200 plane with 0 segs in it created at 0,0,0

utility box_bend "200 plane"
(
button make_it "Build 200 plane"
on make_it pressed do
(
b = plane
b.width = 200
b.length = 200
b.lsegs = 0
b.wsegs = 0
b.pos = 0,0,0
)
)

Thanks!!
-Chris

Joel Hooks
02-08-2003, 02:35 AM
utility box_bend "200"
(
button make_it "Build 200 plane"
on make_it pressed do
(
b = plane length:200 width:200 pos:[0,0,0]
b
)
)


this did what you are looking for, I think.

cdinic
02-08-2003, 02:55 PM
thanks it! thanks alot

-Chris

CGTalk Moderation
01-14-2006, 09:00 AM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.