- Notifications
You must be signed in to change notification settings - Fork28
A collection of Unity3D scripts I've been sharing between projects - open source, fully commented and with examples.
License
MIT, Unknown licenses found
Licenses found
TobiasWehrum/unity-utilities
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Over the years, I've worked on a lot ofprojects andgame jam prototypes with Unity3D and there are some pieces of code that I've needed time and time again. I'm sharing them here in the hopes that they are useful for you too!
Everything is released under theMIT License.
If you find any bugs or have suggestions, please add anIssue here or send me a mail atTobias.Wehrum@dragonlab.de.
- Countdown: Useful for things like cooldowns or spawn delays. It is also helpful for tweening things by using the
PercentElapsed
property. - EditorHelper: Gets the
[Tooltip]
attribute content of fields for editor classes. Might get more helper methods in the future. - LINQExtensions: A collection of extension methods for
IEnumerable
,List
and arrays. - MathHelper: Helper methods for framerate-independent eased lerping, mapping and angles.
- MeshCreator: Makes it more convenient to create meshes via code.
- NoiseOutputValue: Enter a range and a speed in the editor, get an output value that fluctuates over time usingPerlin Noise.
- RandomBag: A
RandomBag
gives you random items from a group while ensuring that in a certain interval every item was given back the same number of times. - Range: Editable data types that take an
int
/float
range. Used for things like "Spawn 2 to 4 enemies." - RollingArray: Collection that keeps the last x elements that are added to it.
- Singleton: Allows easy and convenient creation of a Singleton. Optionally makes a Singleton persist between scenes while ensuring that only one exists.
- UnityHelper: Contains a plethora of useful extensions and helpers for Transform, GameObject, Vector2/3/4, Rect and more.
- XmlHelper: Serializes data to XML strings and makes accessing optional element content and attributes in general XMLs easier.
To use the scripts, just drop them into the Assets folder of your projects. Or better yet, make an "Assets/Extensions/TobisUnityUtitilites" folder and drop them there. Hurray for proper organisation.
You can also just use selected scripts, but you should check the "Dependencies" section in the respective folder to make sure you copy everything you need.
The class documentation is availablehere.
- 2016-10-23: Fixed bugs/improvedSingleton. Added EasedLerp methods for float inMathHelper and Vector2, Vector3 and Color inUnityHelper. Added CalculateCentroid inUnityHelper for arrays/lists of Vector2/3/4.
- 2016-10-22: AddedMathHelper. Added randomization helper methods toUnityHelper.
- 2016-07-03: AddedMeshCreator.
- 2016-06-19: AddedXmlHelper.
- 2016-06-08: AddedUnityHelper.
- 2016-06-05: AddedEditorHelper andRollingArray. Added
[Tooltip]
forNoiseOutputValue
and edited the existingPropertyDrawer
to use tooltips. - 2016-05-15: AddedLINQExtensions andRandomBag.
- 2016-05-09: Added theclass documentation website.
- 2016-05-08: AddedCountdown,NoiseOutputValue,Range andSingleton.
- 2017-09-26: Removed .gitignore. Update note: This will break any scene you use example scripts in and might cause one-time .meta conflicts if you track your projects with git and didn't remove the .gitignore yourself. I'm sorry.
About
A collection of Unity3D scripts I've been sharing between projects - open source, fully commented and with examples.
Topics
Resources
License
MIT, Unknown licenses found
Licenses found
Uh oh!
There was an error while loading.Please reload this page.