Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 483 Bytes

Clone.obj.obj.md

File metadata and controls

33 lines (17 loc) · 483 Bytes

Clone(obj, obj)

Creates a copy of object.

void clone(this obj object, out obj copy)

Parameters

object

Type: obj

The object to copy.

copy

Modifiers: out

Type: obj

The copy of object.

Remarks

  • Scripts inside object do not get copied inside of copy.

Related