Adventure creator version:1.85.5
I discovered a piece of code that needs to be modified when using the Input System. In Moveable_PickUp.cs, line 495:
protected new void UpdateZoom ()
{
float zoom = Input.GetAxis ("ZoomMoveable");
should be changed to:
protected new void UpdateZoom ()
{
float zoom = KickStarter.playerInput.InputGetAxis ("ZoomMoveable");
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Whoops, good spot! Thanks, I'll see this gets corrected.