https://github.com/andtechstudios/andtech
Standard utility assets for Unity
https://github.com/andtechstudios/andtech
upm
Last synced: 10 months ago
JSON representation
Standard utility assets for Unity
- Host: GitHub
- URL: https://github.com/andtechstudios/andtech
- Owner: andtechstudios
- License: bsd-3-clause
- Created: 2020-11-25T16:26:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-01T01:07:36.000Z (about 5 years ago)
- Last Synced: 2025-02-06T16:58:56.464Z (over 1 year ago)
- Topics: upm
- Language: C#
- Homepage:
- Size: 354 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Andtech
Standard utility assets for Unity
## Installation
1. Open the 'Package Manager' window in Unity.
2. Click on the + button in the top left. Choose "Add package from git URL..."
3. Type in https://github.com/AndrewMJordan/andtech.git#upm. Then press enter.
## Usage
Andtech code can accessed via the `Andtech` namespace.
```csharp
using Andtech;
using UnityEngine;
public class ExampleMonoBehaviour : MonoBehaviour {
void Start() {
Debug.Log("Welcome to Andtech!".Color(Color.yellow, Color.cyan));
}
}
```