Install composer locally (current user only):
wget -O - https://gist.github.com/EmpireWorld/1dd5f59566e186907f99dc16badc382a/raw/install-composer-local.sh | bash
Install composer globally (all users):
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public abstract class Singleton<T> : MonoBehaviour where T : Component | |
{ | |
#region Fields | |
/// <summary> |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using SaveGamePro; | |
public class Inventory : MonoBehaviour { | |
public struct Item { | |
public string name; |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using SaveGamePro; | |
public class ObjectSpawner : MonoBehaviour { | |
public GameObject prefab; | |
public Transform spawnPoint; |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class RemoveChildren : MonoBehaviour | |
{ | |
void Start () | |
{ |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class DrawLine2D : MonoBehaviour | |
{ | |
[SerializeField] | |
protected LineRenderer m_LineRenderer; | |
[SerializeField] |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
/// <summary> | |
/// Transform extensions. | |
/// Useful transform utilities and methods. | |
/// </summary> | |
public static class TransformExtensions | |
{ |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class DrawLine : MonoBehaviour | |
{ | |
[SerializeField] | |
protected LineRenderer m_LineRenderer; | |
[SerializeField] |
This script allows you to fix the broken ubuntu packages.
Most of the time the broken packages will be fixed by removing them.
Getting Started | Documentation | License |
---|