├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── pull_request_template.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── Scripts ├── DOTSUtil.cs └── DOTS_EZQuaternions.cs /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Hey if you wat to contribute, go ahead! 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/DOTSUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/Scripts/DOTSUtil.cs -------------------------------------------------------------------------------- /Scripts/DOTS_EZQuaternions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extrys/EZ-DOTS-Extensions/HEAD/Scripts/DOTS_EZQuaternions.cs --------------------------------------------------------------------------------