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

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

Overloaded method. Creates a new controller, using a reference to a FrameTimeControllerValue as the source.
public CreateController ( IControllerValue destination, IControllerFunction function ) : Controller
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> destination, IControllerFunction<float> function )
		{
			// call the overloaded method passing in our precreated frame time controller value as the source
			return CreateController( frameTimeController, destination, function );
		}

Same methods

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