-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make FlxMouse._cursor
public
#2969
Conversation
Please share an example of what you're trying to do, you should really never need to use the |
I'm trying to change the bitmap's smoothing property.
|
would it be better to add a smoothing arg, or expose the bitmap instance, instead? that would simplify your code down to FlxG.mouse.load('assets/images/CustomCursor.png', 2, 0, 0, true); or FlxG.mouse.load('assets/images/CustomCursor.png', 2);
FlxG.mouse.cursor.smoothing = true; or we could add a |
hmm, I think i'll go with making |
Bitmap
in FlxMouse.load
FlxMouse._cursor
public
Alright, should be good to go |
there's one mistake, from the code I gave, commented above |
I see |
Added a deprecation warning to _cursor, which I forgot. Nightly CI jobs are failing in every branch, so don't worry about that, will merge in a bit |
Does exactly what the title says