animation
Gets the currently marked parameters.
oArray = GetMarking(); |
Returns an Array containing the marked parameters
dim params GetPrim "Null" SetMarking "kine.local.pos,kine.global.pos" params = GetMarking() LogMessage "First Marked Parameter = " & params(0) |
GetPrim( "Null" ) ; SetMarking( "kine.local.pos,kine.global.pos" ) ; var params = new VBArray( GetMarking() ).toArray() ; LogMessage( "First Marked Parameter = " + params[0] ) ; |