Login

Continue value

Kohaku's picture
function continueValue(valueA as float, valueB as float)
	valueC as float
	if valueB > valueA
		valueC = valueB + (valueB - valueA)
	else
		valueC = valueB - (valueA - valueB)
	endif
endfunction valueC
No votes yet