Libraries

s&box libraries

Scene Loading Utility

nolankicks.sceneloadingutility

No summary provided.

About

About Scene Loading Utility

A custom scene loading library that allows for manipulation of the scene file before loading

Api

public class CustomScene
{
public CustomScene( SceneFile sceneFile );

//Creates an object in the custom scene
public void CreateObject( GameObject gameObject );

//Get a json object

//Find all objects by a type of a component
public IEnumerable<JsonObject> GetAllObjectsByType( Type type );

//Gets an object within the scene from a guid
public IEnumerable<JsonObject> GetAllObjectsByGuid( string guid );

//Gets an object within the scene from a name
public IEnumerable<JsonNode> GetAllObjectsByName( string name )

//Manipulate the json object

//Adds a component to a json object by a type
public void AddComponentByType( JsonObject obj, Type componentType )

//Adds a component from a json object to a JsonObject GameObject
public void AddComponent( JsonObject obj, JsonObject newComponent )

//Removes a component by a type from a JsonObject
public void RemoveComponentByType( JsonObject obj, Type type )

//Remove an object from the scene
public void RemoveObject( JsonNode obj )

//Loads the custom scene
public void LoadScene();
}

Example

public void LoadScene()
{
var customScene = new CustomScene( sceneFile );
if ( customScene.GetAllObjectsByType( typeof( SkinnedModelRenderer ) ).Count() == 0 )
{
customScene.CreateObject( new GameObject() );
}

customScene.LoadScene();
}

More by kicks

01
Opium Postprocess thumbnail
Opium Postprocess nolankicks.opiumpostprocess

A Retro Console Shader

+0 24h
4favorites
4upvotes
51%Wilson score
02
Screen Shot Library thumbnail
Screen Shot Library nolankicks.screenshotlibrary

A library that allows screenshotting of a scene

+0 24h
3favorites
2upvotes
34%Wilson score
03
No Clip Library thumbnail
No Clip Library nolankicks.noclip

No summary provided.

+0 24h
3favorites
0upvotes
--Wilson score
04
Websocket Tools thumbnail
Websocket Tools nolankicks.websocket_tools

A library that is designed to help simplify the process of interacting with Websockets

+0 24h
2favorites
2upvotes
34%Wilson score