Hello! I'm having some small issues with the code in one of my classes. I'm trying to create a custom Kismet node that, when triggered, will change the camera view (code from the UDN Camera Technical Guide). I have the following code: CameraMovement.uc// extend UIAction if this action should be UI Kismet Action instead of…
I tried getting rid of the semicolon and now I get even more errors? Help? I'm a bit confused. :( new code:// extend UIAction if this action should be UI Kismet Action instead of a Level Kismet Actionclass CameraMovement extends…
though, dissonance has a good point, it's NOT a single quote, it should be that little tick that "SHIFT + ~(tilde)" makes. Some word processors like to change it to a single quote with their auto-formating. Course, web forums like this one may do some auto-formating that too, so it might be fine if you check back in your…
Cerebral Palsy may make it difficult to type, and I sympathise, but it's not an excuse for not learning to debug your own code. What's more, is that this looks an awful lot like a college assignment, so you really should be asking your tutor if you need help getting to grips with debugging rather than relying on forums to…
your error tells you it's from line 55 (the first error). If you look there (line 55), your that's where your function 'changeCamera' is. You have a ';' (line 54) that needs to be taken out. Thats where your '{' line 55 problem is coming from. When I have script errors, if it's not obvious where they are, or what's causing…