PDA

View Full Version : Docs Fix for Bobo...


JohnSwafford
10-03-2008, 05:16 PM
Bobo,

FYI: On the Atmospheric Effects Common Properties, Operators, and Methods topic page in the docs (2009 SP1), the .numGizmos property is incorrectly listed as .numGizmo.

classOf myFire
Fire_Effect
myFire.numGizmo
-- Unknown property: "numGizmo" in Fire_Effect:Fire Effect
myFire.numGizmos
0

BTW, the image maps you added for General Node Properties are awesome....an excellent way to navigate the odd mix of legacy/new methods and property names.

-John Swafford

Bobo
10-03-2008, 09:50 PM
Thanks for the report and for the flowers!

cyfer
10-09-2008, 10:11 PM
Fragmentation Sample Script

2009 Sp1

-- The Parray initialization part Missing Spaces

On Initi Pcont do
(

if (a == undefined) then
(
-- Create and setup a PArray
a = PArray()
a.name = "PArray_36ce15a4"a.speed = 0a.emitter = bba.particleType = 2a.viewtype =
2hide a

)
)


--Fix

On Initi Pcont do
(
if (a == undefined) then

(

-- Create and setup a PArray

a = PArray()

a.name = "PArray_36ce15a4"
a.speed = 0
a.emitter = bb
a.particleType = 2
a.viewtype = 2
hide a

)

)

CGTalk Moderation
10-09-2008, 10:11 PM
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.