You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All keywords, function names, etc from Processing that exist in Propane have had their names converted to follow Ruby's snake_case convention. (e.g. mousePressed --> mouse_pressed)
I have found a few exceptions to this rule
Expected Behavior
All names should have snake_case equivalents
Actual Behavior
There are several names that don't have snake_case equivalents:
mouse_wheel
mouse_wheel is not triggered when the mouse wheel is used, and mouseWheel must be used instead
All keywords, function names, etc from Processing that exist in Propane have had their names converted to follow Ruby's snake_case convention. (e.g.
mousePressed
-->mouse_pressed
)I have found a few exceptions to this rule
Expected Behavior
All names should have snake_case equivalents
Actual Behavior
There are several names that don't have snake_case equivalents:
mouse_wheel
mouse_wheel
is not triggered when the mouse wheel is used, andmouseWheel
must be used insteadDoesn't work:
Works:
display_width
,display_height
,pixel_width
andpixel_height
Doesn't work:
Works:
The text was updated successfully, but these errors were encountered: