I've been following along with a tutorial I found for scripting a side scrolling game. This isn't the first error I've come across, but I've been able to handle them so far. However, my research isn't helping me fix this error: "...QDGame\Classes\QDGamePawn.uc<21> : Error, Bad or missing expression for token:…
The reason that you are getting that error is because you are trying to access variables that the pawn does not have access to. GetDesiredFOV() and the variables inside of the GetDesiredFOV() function are declared in GameThirdPersonCamera. This means that only the GameThirdPersonCamera class and any classes extending from…
Thanks for the help. I see what you're saying and when I moved the GetDesiredFOV() over to my QDGameThirdPersonCamera the error went away, but it's still not setting the FOV for me when I play in browser (I can set it through console, so the rest is working).class QDGameThirdPersonCamera extends GameThirdPersonCamera;/**…