Andtech
Andtech provides a collection of standard utility assets for Unity development, streamlining common tasks through convenient helper methods and extensions. Access productivity-enhancing tools via the Andtech namespace to accelerate your development workflow.
com.andtech.core 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/andrewmjordan-core.git#upm README Markdown
Copy this to your project's README.md
## Installation
Add **Andtech** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/andrewmjordan-core.git#upm
```
[](https://www.pkglnk.dev/pkg/andrewmjordan-core)README
Andtech
Standard utility assets for Unity
Installation
- Open the 'Package Manager' window in Unity.
- Click on the + button in the top left. Choose "Add package from git URL..."
- Type in https://github.com/AndrewMJordan/andtech.git#upm. Then press enter.
Usage
Andtech code can accessed via the Andtech namespace.
using Andtech;
using UnityEngine;
public class ExampleMonoBehaviour : MonoBehaviour {
void Start() {
Debug.Log("Welcome to Andtech!".Color(Color.yellow, Color.cyan));
}
}
No comments yet. Be the first!