Example #1
0
        /// <summary>
        /// Sets the computing scheme to a custom scheme that will then be used to assign keys to scripts
        /// </summary>
        /// <param name="scheme">The delegate that will be used to determine the key and path in the source manager</param>
        public void SetComputingScheme(DelKeyComputingScheme scheme)
        {
            if (scheme == null)
            {
                return;
            }

            computeScheme = scheme;
        }
Example #2
0
 /// <summary>
 /// Sets the computing scheme to a custom scheme that will then be used to assign keys to scripts
 /// </summary>
 /// <param name="scheme"></param>
 public void SetComputingScheme(DelKeyComputingScheme scheme)
 {
     if (scheme == null)
     {
         return;
     }
     _computeScheme = scheme;
     this.Log(DebugLevel.LOGS, Verbosity.LEVEL2, "Changed Computing Scheme to: {0}", scheme.Method.Name);
 }
Example #3
0
 /// <summary>
 /// Sets the computing scheme to a custom scheme that will then be used to assign keys to scripts
 /// </summary>
 /// <param name="scheme">The delegate that will be used to determine the key and path in the source manager</param>
 public void SetComputingScheme(DelKeyComputingScheme scheme)
 {
     if (scheme == null)
     {
         return;
     }
     computeScheme = scheme;
     Logger.Log(PPLogType.Log, Verbosity.Level2, "Changed Computing Scheme to: {0}", scheme.Method.Name);
 }