Skip to content

rsimenok/RSJoystick

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RSJoystick

RSJoystick is joystick control for iOS.

Demo GIF

Here is values you can get from joystick:

-(void)positionChanged:(RSJoystick *)sender {
    NSLog(@"value: %f", sender.value);
    NSLog(@"radius: %f", sender.radius);
    NSLog(@"angle: %f", sender.angle);
    NSLog(@"cartesian: %@", NSStringFromCGPoint(sender.cartesianPoint));
}

License

RSJoystick is licensed under the terms of the MIT license. Please see the LICENSE file for full details.

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%