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

VAUSignalSource.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    VAUSignalSource.cs 412 B
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    
    public class VAUSignalSource : MonoBehaviour {
    
        protected string _ID = ""; // Identifier string that is either assigned by VA for a managed (dynamic) signal source, or selected string for an unmanaged signal source (like live input)
    
        public string ID
        {
            get
            {
                return _ID;
            }
        }
    }