Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RonenNess/UnityUtils
Misc collection of Unity utilities and useful scripts, some I wrote, some I found.
https://github.com/RonenNess/UnityUtils
Last synced: 3 days ago
JSON representation
Misc collection of Unity utilities and useful scripts, some I wrote, some I found.
- Host: GitHub
- URL: https://github.com/RonenNess/UnityUtils
- Owner: RonenNess
- Created: 2017-09-16T11:54:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-11T19:31:28.000Z (about 5 years ago)
- Last Synced: 2024-08-03T05:18:11.546Z (3 months ago)
- Language: C#
- Size: 105 KB
- Stars: 350
- Watchers: 16
- Forks: 77
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unity Scripts and Utils
Useful scripts & utils that I wrote / modified for Unity over the years.
## About the scripts
- All scripts are under the NesScript namespace, its recommended to replace it with your own game namespace to separate them from the standard assets.
- All scripts are under the MIT license and are free to use.
- To learn more about the scripts, check out the README.md file in each folder.## Scripts
The following is a list with all scripts found in this repo:
- [Controls\FollowObject\FollowObject.cs](Controls/FollowObject)
- [Controls\GameEditor\FlyCameraController\FlyCameraController.cs](Controls/GameEditor/FlyCameraController)
- [Controls\GameEditor\ObjectsPlacer\ObjectsPlacer.cs](Controls/GameEditor/ObjectsPlacer)
- [Controls\PathFinding\2dTileBasedPathFinding\Grid.cs](Controls/PathFinding/2dTileBasedPathFinding)
- [Controls\PathFinding\2dTileBasedPathFinding\Node.cs](Controls/PathFinding/2dTileBasedPathFinding)
- [Controls\PathFinding\2dTileBasedPathFinding\PathFinding.cs](Controls/PathFinding/2dTileBasedPathFinding)
- [Controls\PathFinding\2dTileBasedPathFinding\Point.cs](Controls/PathFinding/2dTileBasedPathFinding)
- [Controls\SimpleFpsControls\FPSMouseLooking.cs](Controls/SimpleFpsControls)
- [Controls\SimpleFpsControls\FPSRigidWalker.cs](Controls/SimpleFpsControls)
- [Controls\SimpleFpsControls\FPSWalker.cs](Controls/SimpleFpsControls)
- [Graphics\Billboard\Billboard.cs](Graphics/Billboard)
- [Graphics\RecalcTextureTile\RecalcTextureTile.cs](Graphics/RecalcTextureTile)
- [Graphics\TextureFan\TextureFan.cs](Graphics/TextureFan)
- [Misc\ExMath\ExMath.cs](Misc/ExMath)
- [Oldies\Controls\GameEditor\ObjectsPickAndPlacer\ObjectsPickAndPlacer.cs](Oldies/Controls/GameEditor/ObjectsPickAndPlacer)
- [Randomizers\RandomDoodadsGenerator\RandomDoodadsGenerator.cs](Randomizers/RandomDoodadsGenerator)
- [Randomizers\RandomRotator\RandomRotator.cs](Randomizers/RandomRotator)
- [Randomizers\RandomScaler\RandomScaler.cs](Randomizers/RandomScaler)
- [TileMap3D\Tile.cs](TileMap3D)
- [TileMap3D\TileMap.cs](TileMap3D)
- [TileMap3D\TilemapEditor.cs](TileMap3D)
- [TileMap3D\TileType.cs](TileMap3D)
- [_External\FpsCounter\HUDFPS.cs](_External/FpsCounter)
- [_External\UnityToolbag\CacheBehaviour\CacheBehaviour.cs](_External/UnityToolbag/CacheBehaviour)
- [_External\UnityToolbag\SnapToSurface\Editor\SnapToSurface.cs](_External/UnityToolbag/SnapToSurface/Editor)
- [_External\UnityToolbag\UnityConstants\Editor\UnityConstantsGenerator.cs](_External/UnityToolbag/UnityConstants/Editor)For more info check out the README file in every script folder.
## _External
This repo is also used as a private collection of useful scripts I picked up along the road.
The **_External** folder contains scripts that I took as-is, as a whole, from other sources.
Nothing there is mine, not even edited.## Missing Credits
Some of the scripts are based on free stuff I found over the years in forums etc. And some are based on older Unity projects I made, and the sources are unknown.
I try to give credit as much as I can (in the file headers) but its very much possible that I missed a spot, especially on older scripts.
So If you recognize your code but see no proper reference / credit, please let me know so I can fix it (just open a ticket on this git repo or send me an email).
Thanks!