OnCreate Extension Examples:

THShip.onCreate
---------------
Moves objects or "ships" along a user created spline
    - Child #1 = spline node
    - Child #2 = object to move
    - Attributes:
        1. numShips = Clones child #2 X amount of times, moving them along the spline at equal distance
            * Defult if omitted = 1
        2. speed = Speed at which objects or ships move along the spline
            * Default if omitted = 10

THRotator.onCreate
------------------
Rotates and object along a defined axis
    - Attributes:
        1. axis = axis to rotate (1 = X, 2 = Y, 3 = Z)
            * Default if omitted = 3
        2. speed = rotational speed
            * Default if omitted = 0.0012

THNightlightFlicker.onCreate
----------------------------
Randomly flickers an object (or light/emissive)
    - Attributes:
        1. isNightLight = invisible during the day if true
            * Default if omitted = true

THFirefly.onCreate
------------------
Cause object to be visible/invisible for a random amount of time
Only shows at night in the spring, summer, and fall
    - Attributes:
        1. timeOn = min amount of time (in seconds) object should remain visible
            * Default if omitted = 1
        2. timeOnMax = max amount of time (in seconds) object should remain visible
            * Default if omitted = timeOn value
        3. timeOff = min amount of time (in seconds) object should remain invisible
            * Default if omitted = 1
        4. timeOffMax = max amount of time (in seconds) object should remain invisible
            * Default if omitted = timeOff value

THButterfly.onCreate
--------------------
Creates butterflies, each with their own spline that appear when the player gets close
Can create multiple butterflies under onCreate node
    - Child #1 - X = butterfly transform groups (can be as many as you want)
        - Sub-Child #1 = butterfly spline
        - Sub-Child #2 = butterfly vis transform group
            - Sub-Sub Child #1 = butterfly "wings up" shape
            - Sub-Sub Child #2 = butterfly "wings down" shape
    - Attributes:
        1. speed = butterfly movement speed along spline
            * Default if omitted = 0.005
