aboutsummaryrefslogtreecommitdiff
path: root/definitions.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-11-18 16:58:13 +0900
committerAstatin <[email protected]>2024-11-18 16:58:13 +0900
commitea4a115b8e640d5d17014a50fd3199ba4cc6494f (patch)
tree39bfe1c418c46445951ba9854708928f0cc027a7 /definitions.gbasm
parent0a979fabc9c770834ed90e02758aadea51c889a8 (diff)
Check collisions on hop and cancel if collision
Diffstat (limited to 'definitions.gbasm')
-rw-r--r--definitions.gbasm12
1 files changed, 12 insertions, 0 deletions
diff --git a/definitions.gbasm b/definitions.gbasm
index 97f1e93..0eb0a94 100644
--- a/definitions.gbasm
+++ b/definitions.gbasm
@@ -29,6 +29,13 @@
.DEFINE mem_bunny_y ($cb02)
.DEFINE mem_bunny_direction ($cb03)
; aaaamddd: a = animation, m = is_moving, d = direction
+; animations:
+; nothing = 0
+; action = 1
+; death = 2
+; superjump = 3
+; shaking = 4
+
.DEFINE mem_bunny_health ($cb06)
.DEFINE mem_bunny_flags ($cb07)
.DEFINE mem_viewport_x ($c008)
@@ -75,6 +82,11 @@
.DEFINE mem_prepared_loading_block_position_1 ($c023)
.DEFINE mem_prepared_loading_block_position_2 ($c024)
+.DEFINE mem_loading_mode_vblank_func_pointer_high ($c025)
+.DEFINE mem_loading_mode_vblank_func_pointer_low ($c026)
+.DEFINE mem_loading_mode_regular_func_pointer_high ($c027)
+.DEFINE mem_loading_mode_regular_func_pointer_low ($c028)
+
.DEFINE next_free_head_higher_bytes $c7
.DEFINE mem_next_free_head_lower_bytes ($c6ff)