I'm trying to code a custom block that affects Mario's pose while hes touching it. I've set $13E0 to the appropriate value, but when Mario touches it, his pose doesn't change. Is there anything specific I need to do to change Mario's pose while he is touching the block?
This is the part of my block's code that is suppose to change Mario's pose.
LDA $19
BNE Big
LDA #$20
STA $13E0
BRA Sizedone
Big:
LDA #$6D
STA $13E0
Sizedone:
(the rest of the code)
I have a hack thread - Link (Now with a demo!)
Also a music thread - Link
C3 Projects
2013: Modern Spiny Pack
2012: MGSS v0.1
Spring 2010: SMB2 Autobomb Sprite
This is the part of my block's code that is suppose to change Mario's pose.
LDA $19
BNE Big
LDA #$20
STA $13E0
BRA Sizedone
Big:
LDA #$6D
STA $13E0
Sizedone:
(the rest of the code)
I have a hack thread - Link (Now with a demo!)
Also a music thread - Link
C3 Projects
2013: Modern Spiny Pack
2012: MGSS v0.1
Spring 2010: SMB2 Autobomb Sprite