CJUtils.AssemblyJUtils | Utilities class working with assemblies |
►CAttribute | |
CJUtils.ButtonAttribute | Attach this button to a method to make it clickable in the inspector. This attribute will also draw parameters if it can |
CJUtils.ResourcePlayModeChangeCallbackReceiverAttribute | Receive a call when the play mode has been changed in a resource. Can be used to reset some data of a resource |
CJUtils.AudioListenerExtensions | Adds extensions for the AudioSource component |
►CJUtils.AutoSingletonBehaviour< ObjectPoolManager > | |
CJUtils.ObjectPoolManager | Makes it easier to work with object pools |
►CJUtils.AutoSingletonBehaviour< ServiceManager > | |
CJUtils.ServiceManager | A simple service manager |
►CJUtils.BaseEventChannel< bool > | |
CJUtils.BoolEventChannel | |
►CJUtils.BaseEventChannel< EventChannel.Empty > | |
CJUtils.EventChannel | |
►CJUtils.BaseEventChannel< float > | |
CJUtils.FloatEventChannel | |
►CJUtils.BaseEventChannel< int > | |
CJUtils.IntEventChannel | |
►CJUtils.BaseEventChannel< long > | |
CJUtils.LongEventChannel | |
►CJUtils.BaseEventChannel< uint > | |
CJUtils.UIntEventChannel | |
►CJUtils.BaseEventChannel< ulong > | |
CJUtils.ULongEventChannel | |
►CJUtils.BaseEventListener< BoolEventChannel, bool > | |
CJUtils.BoolEventListener | |
►CJUtils.BaseEventListener< EventChannel, EventChannel.Empty > | |
CJUtils.EventListener | |
►CJUtils.BaseEventListener< FloatEventChannel, float > | |
CJUtils.FloatEventListener | |
►CJUtils.BaseEventListener< IntEventChannel, int > | |
CJUtils.IntEventListener | |
►CJUtils.BaseEventListener< LongEventChannel, long > | |
CJUtils.LongEventListener | |
►CJUtils.BaseEventListener< UIntEventChannel, uint > | |
CJUtils.UIntEventListener | |
►CJUtils.BaseEventListener< ULongEventChannel, ulong > | |
CJUtils.ULongEventListener | |
CJUtils.CollectionExtensions | |
CJUtils.ColorExtensions | Gives threshold comparing functions for Colors |
CJUtils.ComponentExtensions | Useful extensions for working with components |
CJUtils.Coroutines | Make coroutines run on the JUtilsObject |
►CDictionary | |
CJUtils.SerializableDictionary< TKey, TValue > | A dictionary of which the values do not get lost on serialization |
►CUnityEditor.Editor | |
CJUtils.Editor.EventChannelEditor | |
CJUtils.Editor.MonoBehaviourEditor | |
CJUtils.EventChannel.Empty | |
CJUtils.Enumerable | Extensions for Enumerates |
CJUtils.EventChannelExtensions | Useful extensions for dealing with BaseEventChannel<T>> |
CJUtils.GizmoUtils | Some shorthand functions for drawing things with Hanldes |
►CJUtils.IDamageEvent | Used to create more detailed damage events |
CJUtils.SimpleDamageEvent | Light simple implementation for the IDamageEvent |
►CIEnumerator | |
CJUtils.CoroutineCatcher | Wrapper for troublesome coroutines |
CJUtils.RangeEnumerator | Allows for complex enumerations for Range types |
►CIEquatable | |
CJUtils.SerializableGuid | A lightweight guid class that can be serialized |
►CJUtils.IHealEvent | Used to create more detailed heal events |
CJUtils.SimpleHealEvent | Light simple implementation for the IHealEvent |
CJUtils.IResourcePlayModeChangeCallbackReceiver | This interface is optional but it gives all the methods for ResourcePlayModeChangeCallbackReceiverAttribute> |
►CISerializationCallbackReceiver | |
CJUtils.SerializableDictionary< TKey, TValue > | A dictionary of which the values do not get lost on serialization |
CJUtils.SerializableType | Serialize a System.Type Object |
CJUtils.IService | |
►CJUtils.ISingleton< T > | Simple interface for working with singletons |
CJUtils.AutoSingletonBehaviour< T > | Your simple and everyday singleton class that automatically instantiates if there is no instance yet |
CJUtils.SingletonBehaviour< T > | Your simple and everyday singleton class |
►CJUtils.IWeighted | A interface that helps with weighted randomness WeightedExtensions |
CJUtils.Weighted< T > | A struct that makes it easier to work with weighted randomness - See also
- WeightedExtensions
|
CJUtils.MinMax | A struct with a custom editor which can be used to get a minimum and a maximum value, handy for random values & clamping |
CJUtils.MinMaxInt | A struct with a custom editor which can be used to get a minimum and a maximum value, handy for random values & clamping |
►CMonoBehaviour | |
CJUtils.AutoSingletonBehaviour< T > | Your simple and everyday singleton class that automatically instantiates if there is no instance yet |
CJUtils.BaseEventListener< TListener, TArgument > | The base class for event channel based listeners. Recommended for UI or if the GO only has one event listener, otherwise consider using the BaseEventChannel<T> directly |
CJUtils.BillboardCamera | Bill-boarding component which allows for advanced anchoring and other behaviours |
CJUtils.DestroyObjectAfterKilled | Destroys the targetted gameobject when the attached HealthComponent died |
CJUtils.DontDestroyOnLoad | Runs the DDOL function on this gameobject, this is a more declerative way to mark an object for DDOL |
CJUtils.HealthComponent | A simple yet versatile HealthComponent implementation that uses SendMessage to send its heal & damage events |
CJUtils.MultitonBehaviour< T > | A MonoBehaviour where you can easily access all of its instances |
CJUtils.ObjectPool | A simple implementation for an object pool |
CJUtils.PoolItem | A behaviour that is used with the ObjectPool. Other behaviours can listen to the events this class sends |
CJUtils.SingletonBehaviour< T > | Your simple and everyday singleton class |
CJUtils.SingletonManager | Centralized singleton to fix reference & hot reload issues issues |
CJUtils.SpawnPoolItemAfterDestroyed | Spawn an object using ObjectPoolManager after the game object was disabled / destroyed or the pool item was sent back to the object pool |
CJUtils.SpawnPoolItemAfterEnabled | Spawn an object using ObjectPoolManager after the game object was enalbed / created or the pool item was sent into action |
►CJUtils.State< T1, T2, T3 > | A simple state that can be driven by stateMachine |
CJUtils.StateMachine | A mono behaviour state-machine that can also be used as a state |
CJUtils.Optional< T > | A struct useful for showing in the inspector if the value is optional, and does not have to be set. Also allows for quicker checks if the value is set |
CJUtils.SerializableDictionary< TKey, TValue >.Pair | The pair object used for the internal data |
►CPropertyAttribute | |
CJUtils.CustomNameAttribute | Change the name of a parameter in the inspector |
CJUtils.RequiredAttribute | When an UnityEngine.Object reference has not been set, show a big warning |
CJUtils.SerializeInterfaceAttribute | Restrict the UnityEngine.Object field to extend a certain interface |
CJUtils.ShowWhenAttribute | Hide a field if the condition does not match, allows checks for bools, ints, floats & strings |
CJUtils.TypeSelectorAttribute | Show a dropdown for all classes that extend the field's type. Requires SerializeReference attribute to function correctly |
CJUtils.UneditableAttribute | Disable writing for this property in the editor |
CJUtils.UnpackAttribute | Displays the given type in the inspector as if it isn't a different object. Useful for Unity DOTS baker workflow |
►CPropertyDrawer | |
►CJUtils.Editor.BaseMinMaxEditor | |
CJUtils.Editor.MinMaxEditor | |
CJUtils.Editor.MinMaxIntEditor | |
CJUtils.Editor.CustomNameEditor | |
CJUtils.Editor.OptionalEditor | |
CJUtils.Editor.RequiredEditor | |
CJUtils.Editor.SceneReferenceEditor | |
CJUtils.Editor.SerializableGuidEditor | |
CJUtils.Editor.SerializeInterfaceEditor | |
CJUtils.Editor.ShowWhenEditor | |
CJUtils.Editor.TypeSelectorEditor | |
CJUtils.Editor.UneditableEditor | |
CJUtils.Editor.UnpackEditor | |
CJUtils.Editor.WeightedEditor | |
CJUtils.StateMachine.QueueEntry | Representation of the state and its data in the queue |
CJUtils.RangeExtensions | Used to turn a range or int to a RangeEnumerator so it can be used in a Foreach loop |
CJUtils.Routines | A static class that contains methods for easily creating routines & avoid object allocations |
CJUtils.SceneReference | Reference a scene via its asset instead of its name. It can also give suggestions based on it being null / not in build |
►CScriptableObject | |
CJUtils.BaseEventChannel< T > | The base class for an simple event channel |
CJUtils.SerializableDictionary< JUtils.PoolItem, JUtils.ObjectPool > | |
CJUtils.SerializableDictionary< JUtils.SerializableType, List< Object > > | |
CJUtils.SerializableDictionary< JUtils.SerializableType, Object > | |
►CState | |
CJUtils.State< T1, T2, T3 > | A simple state that can be driven by stateMachine |
CJUtils.State< T1, T2, T3 > | A simple state that can be driven by stateMachine |
CJUtils.State< T1, T2, T3 > | A simple state that can be driven by stateMachine |
CJUtils.StateData | The data of a state |
CJUtils.StateRef< T > | Empty structure used to help with typesafety |
CJUtils.TransformExtensions | Some useful extensions to transforms |
CJUtils.UnityObjectExtensions | |
CJUtils.Vector2Extensions | |
CJUtils.Vector3Extensions | |
►CVisualElement | |
CJUtils.Editor.JUtilsInspectorButton | |
CJUtils.WeightedExtensions | Contains helper functions for working with Weighted Randomness |