Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if(Delta(Keyboard.A) OR Delta(Keyboard.D)){
- PPJoy.Analog2 = 0;
- if(Pressed(Keyboard.A)){
- PPJoy.Analog2 = -.99;
- }
- if(Pressed(Keyboard.D)){
- PPJoy.Analog2 = .99;
- }
- }
- if(Delta(Keyboard.W) OR Delta(Keyboard.S)){
- PPJoy.Analog3 = 0;
- if(Pressed(Keyboard.S)){
- PPJoy.Analog3 = -.99;
- }
- if(Pressed(Keyboard.W)){
- PPJoy.Analog3 = .99;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment