nHance Generator
nHanceGenerator API Documentation
Introduction
The nHanceGenerator is a script that generates prefab variants and parent objects from a set of game objects and materials. The script is built in Unity using the MonoBehaviour class and serialized fields for the user interface.
Classes
nHanceGenerator
The nHanceGenerator class is the main class of the script and contains the following properties:
- nHanceObjectsList: A list of nHanceObjects that contains the game objects and materials to be processed.
- prefabVariantGenerationSystem: A reference to the PrefabVariantGenerationSystem class.
- nameToCleanup: A string that specifies the name extension to the existing prefab name.
- folderToSavePrefabs: A UnityEngine.Object that specifies the folder for the prefabs to be saved.
- folderToSaveVariants: A UnityEngine.Object that specifies the folder for the variants to be saved.
Methods
- ProcessFolder: A method that processes the folders and generates prefab variants and parent objects.
nHanceObjects
The nHanceObjects class is a serializable class that contains the following properties:
- gameobjectToProcess: A list of GameObjects to be processed.
- thismaterialList: A list of Materials to be used for the generation of the variants and parent objects.
- ProcessThis: A boolean that specifies whether the object should be processed or not.
- folderToSavePrefabs: A UnityEngine.Object that specifies the folder for the prefabs to be saved.
- folderToSaveVariants: A UnityEngine.Object that specifies the folder for the variants to be saved.
Usage
- Attach the nHanceGenerator script to a game object in the Unity scene.
- In the Inspector window, set the nHanceObjectsList to the list of nHanceObjects you want to process.
- Set the prefabVariantGenerationSystem reference to the PrefabVariantGenerationSystem object in the scene.
- Set the nameToCleanup string to the desired name extension for the prefabs.
- Set the folderToSavePrefabs and folderToSaveVariants UnityEngine.Objects to the desired folders for the prefabs and variants.
- Call the ProcessFolder method to process the folders and generate the prefab variants and parent objects.