PasteObjects: Difference between revisions

From VisionaireWiki
Jump to navigation Jump to search
(Removing all content from page)
m (Bot (Edward's framework))
 
Line 1: Line 1:
==pasteObjects==


Lua Syntax:
<pre>pasteObjects(windowName [, parentObject, field], {flags=1,
    flush = true|false})</pre>
===Arguments===
====windowName====
:'''int''' - Name of the new toolbox.
====parentObject====
:'''"object path"|"object id"|object''' - Object where the pasted object(s) will be added to.If no parent object is given the object(s) will be added to the game object.
====field====
:'''int''' - Data field where the pasted object(s) will be added to the parent object.
===Flags===
====fl/flush====
:If true then the pending notifications will be flushed immediately. By default notifications of commands inside a command group will be sent after the group is closed.
===Return Values===
;objects
:List of newly created pasted objects.

Latest revision as of 12:57, 16 August 2009

pasteObjects

Lua Syntax:

pasteObjects(windowName [, parentObject, field], {flags=1, 
    flush = true|false})

Arguments

windowName

int - Name of the new toolbox.

parentObject

"object path"|"object id"|object - Object where the pasted object(s) will be added to.If no parent object is given the object(s) will be added to the game object.

field

int - Data field where the pasted object(s) will be added to the parent object.

Flags

fl/flush

If true then the pending notifications will be flushed immediately. By default notifications of commands inside a command group will be sent after the group is closed.

Return Values

objects
List of newly created pasted objects.