public ImageSmoothFollowDragPositionProcessConstArg( IProcessManager processManager, ITravelableUIE travelableUIE, IPickUpManager pickUpManager, float dragThreshold, float smoothCoefficient ) : base( processManager, travelableUIE ) { thisPickUpManager = pickUpManager; thisDragThreshold = dragThreshold; thisSmoothCoefficient = smoothCoefficient; }
public IImageSmoothFollowDragPositionProcess CreateImageSmoothFollowDragPositionProcess(ITravelableUIE travelableUIE, IPickUpManager pum, float dragThreshold, float smoothCoefficient) { IImageSmoothFollowDragPositionProcessConstArg arg = new ImageSmoothFollowDragPositionProcessConstArg( thisProcessManager, travelableUIE, pum, dragThreshold, smoothCoefficient ); ImageSmoothFollowDragPositionProcess process = new ImageSmoothFollowDragPositionProcess(arg); return(process); }
public AbsPickUpSystemUIAActivationData(IUIManager uim, IPickUpSystemProcessFactory pickUpSystemProcessFactory, IPickUpSystemUIElementFactory pickUpSystemUIElementFactory, IPickUpManager pickUpManager) : base(uim, pickUpSystemProcessFactory, pickUpSystemUIElementFactory) { thisPickUpManager = pickUpManager; }
public DragImageImplementorConstArg(float dragThreshold, float smoothCoefficient, IPickUpSystemProcessFactory pickUpSystemProcessFactory, IPickUpManager pickUpManager) { thisDragThreshold = dragThreshold; thisSmoothCoefficient = smoothCoefficient; thisPickUpSystemProcessFactory = pickUpSystemProcessFactory; thisPickUpManager = pickUpManager; }