Show / Hide Table of Contents

Class FusScene

.fus File contents making up a scene.

Inheritance
System.Object
FusContents
FusScene
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fusee.Serialization.V1
Assembly: Fusee.Serialization.dll
Syntax
public class FusScene : FusContents

Fields

Children

List of root nodes of the scene graph making up this scene.

Declaration
public List<FusNode> Children
Field Value
Type Description
System.Collections.Generic.List<FusNode>

ComponentList

Overall list of components used in this scene. This list contains the .fus file's physical payload. Indices into this list are used as references at other places in the .fus file.

Declaration
public List<FusComponent> ComponentList
Field Value
Type Description
System.Collections.Generic.List<FusComponent>

Methods

AddNode(FusNode)

Adds a node as a a child node to

Declaration
public void AddNode(FusNode node)
Parameters
Type Name Description
FusNode node
Generated by DocFX
GitHub Repo
Back to top