Terrain stores all terrain-related parameters. colors, physical properties, data, water states can be adjusted here.
Cannot be created.
This object cannot be created by using the RWObject.Create() function.
Cannot be deleted.
This object cannot be deleted by using the Destroy() function.
string ClassName
The object-type name. Read only.
string Name
The custom name of this object.
RWObject Parent
The parent of this object.
float Friction
Friction coefficient. When two objects come into contact, the smaller friction coefficient will be adopted.
float Bounciness
Bounciness coefficient of terrain material.
DelAllChild()
Deletes all child objects.
Clone()
Clones an object to create a copy.
GetAncestorByName(Name)
Returns the object's first parent node with the same name.
GetAncestorByClassName(className)
Returns the object's first parent node of the same class.
GetChildByName(Name,recursive)
Returns the object's first child object with the same name. If the second parameter is true, it will search through descendants of all hierarchies.
GetChildByClassName(className,recursive)
Returns the object's first child object of the same type. If the second parameter is true, it will search through descendants of all hierarchies.
GetAllChild()
Seeks all its child objects and returns as a list.
GetAllDescendant()
Recursively seeks all its descendants and returns as a list.
IsClass(ClassName)
Judges whether it is the class the same as the given object class or not.
IsAncestor(TarObj)
Judges whether itself is the ancestor of the target object or not.
IsDescendant(TarObj)
Judges whether itself is the descendant of the target object or not.
WaitForChild(childName,timeout)
Seeks its own child object.
Child(childName)
Seeks its own child object by a given name.
Equals(TarObj)
Judges whether the target object is the same as itself or not.
ChildAdded(childobject)
Triggered when a child object is added.
ChildRemoved(childobject)
Deletes all child objects.
DescendantAdded(descendantobject)
Triggered when a descendant is added.
DescendantRemoved(descendantobject)
Triggered when a descendant is removed.
AncestryChanged(AncestryChanged)
Triggered when the ancestry is changed.