A ceiling trampoline tile

tbizzle

Well-known member
Would be cool to get a trampoline tile that bounces you in the opposite direction. Any way to do this?

images.png
 

Rodnade

Member
Hi tbizzle!
I hope this is helpful.

Code:
   ;Downward Trampoline
    
   CPX player1_object
   BEQ +isPlayer
   JMP +ifNotThePlayer
      
   +isPlayer
  
   LDA #$09
   STA Object_v_speed_hi,x
  
   +ifNotThePlayer
   rts
 
Top Bottom