Skip to content

Commit

Permalink
Merge pull request #14 from jack27121/v2.2.0
Browse files Browse the repository at this point in the history
smooth zoom and anim curves
  • Loading branch information
jack27121 committed Jul 24, 2023
2 parents 7967b87 + f4bf120 commit f607fb6
Show file tree
Hide file tree
Showing 47 changed files with 1,380 additions and 1,277 deletions.
Binary file added LogoJack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions animcurves/stanncam_ac_bouncy/stanncam_ac_bouncy.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions animcurves/stanncam_ac_ease/stanncam_ac_ease.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions animcurves/stanncam_ac_linear/stanncam_ac_linear.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

243 changes: 123 additions & 120 deletions fonts/f_hires/f_hires.yy

Large diffs are not rendered by default.

243 changes: 123 additions & 120 deletions fonts/f_pixel/f_pixel.yy

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions objects/__obj_stanncam_manager/__obj_stanncam_manager.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions objects/obj_ball/Step_0.gml
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
/// @description
image_angle+=2;






image_angle+=2;
46 changes: 23 additions & 23 deletions objects/obj_ball/obj_ball.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions objects/obj_camera/Mouse_60.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// @description
var zoom_amount = cam1.zoom_amount;
zoom_amount-=0.05
zoom_amount = clamp(zoom_amount,0.1,2);
cam1.zoom(zoom_amount,0);
5 changes: 5 additions & 0 deletions objects/obj_camera/Mouse_61.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// @description
var zoom_amount = cam1.zoom_amount;
zoom_amount+=0.05
zoom_amount = clamp(zoom_amount,0.1,2);
cam1.zoom(zoom_amount,0);
52 changes: 27 additions & 25 deletions objects/obj_camera/obj_camera.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 25 additions & 25 deletions objects/obj_player/obj_player.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 26 additions & 26 deletions objects/obj_player2/obj_player2.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f607fb6

Please sign in to comment.