Skip to content
Snippets Groups Projects
Select Git revision
  • develop
  • master default protected
  • feature/build
  • VA_v2022a
  • v2021.a
  • v2020.a
  • v2019.a
  • v2018.b
  • v2017.c
  • v2017.a
  • v2016.a
11 results

VAUAdditionalSearchPath.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    VAUAdditionalSearchPath.cs 244 B
    using UnityEngine;
    
    namespace VAUnity
    {
        public class VAUAdditionalSearchPath : MonoBehaviour
        {
            public string path = "";
    
            private void Start ()
            {
                VAUnity.VA.AddSearchPath( path );
            }
        }
    }