Axiom.Controllers.ControllerManager.CreateController C# (CSharp) Метод

CreateController() публичный Метод

Factory method for creating an instance of a controller based on the input provided.
public CreateController ( IControllerValue source, IControllerValue destination, IControllerFunction function ) : Controller
source IControllerValue Controller value to use as the source.
destination IControllerValue Controller value to use as the destination.
function IControllerFunction Controller funcion that will use the source value to set the destination.
Результат Controller
		public Controller<float> CreateController( IControllerValue<float> source, IControllerValue<float> destination, IControllerFunction<float> function )
		{
			// create a new controller object
			Controller<float> controller = new Controller<float>( source, destination, function );

			// add the new controller to our list
			controllers.Add( controller );

			return controller;
		}

Same methods

ControllerManager::CreateController ( IControllerValue destination, IControllerFunction function ) : Controller