Exemple #1
0
        public void Awake()
        {
            base.Awake();

            MeatTrakAttachmentInterface meatInterface = AttachmentInterface as MeatTrakAttachmentInterface;

            if (meatInterface != null && meatInterface.MeatTrak != null)
            {
                meatInterface.MeatTrak.Awake();                 //call this early so we don't have to wait for the interface
            }
        }
Exemple #2
0
        public override Dictionary <string, string> GetFlagDic()
        {
            Dictionary <string, string> dictionary    = new Dictionary <string, string>();
            MeatTrakAttachmentInterface meatInterface = AttachmentInterface as MeatTrakAttachmentInterface;

            if (meatInterface != null)
            {
                dictionary.Add("TrackingMode", meatInterface.TrackingMode.ToString());
                if (meatInterface.MeatTrak != null)
                {
                    dictionary.Add("NumberTarget", meatInterface.MeatTrak.NumberTarget.ToString());
                }
            }
            return(dictionary);
        }
Exemple #3
0
        public override void ConfigureFromFlagDic(Dictionary <string, string> f)
        {
            if (f == null)
            {
                return;
            }

            MeatTrakAttachmentInterface meatInterface = AttachmentInterface as MeatTrakAttachmentInterface;

            if (meatInterface != null)
            {
                meatInterface.TrackingMode = (MeatTrakAttachmentInterface.TrackingModes)Enum.Parse(typeof(MeatTrakAttachmentInterface.TrackingModes), f["TrackingMode"]);
                if (meatInterface.MeatTrak != null)
                {
                    meatInterface.MeatTrak.NumberTarget = float.Parse(f["NumberTarget"]);
                }
            }
        }