Jongyon7192p

Joined 14 June 2018
no edit summary
No edit summary
No edit summary
Line 74: Line 74:


the tumbling bridge block rotates in a stupid way, but i managed to decompose its euler angle frequencies into parts. Turned out fucking useless cuz we could just fucking yeet ourselves or smth, idk, ask iwer.
the tumbling bridge block rotates in a stupid way, but i managed to decompose its euler angle frequencies into parts. Turned out fucking useless cuz we could just fucking yeet ourselves or smth, idk, ask iwer.
and i'll try to summarize my block of text now.
'''Crouch Sliding:'''
''(1) the 10k glitch step''
The fwd component of your joystick tilt is multiplied by (speed+100)/200. (It's intended that the result is your fwd component is halved or stays the same cuz your max slide speed should be 100 unit/f. But ofc, you hyperspeed, and you can do the 10k glitch.)
We'll name this the "modified fwd".
''(2) turn mario''
based on the sideward component of stick tilt (which i define as "side"), rotate mario's velocity vector like this.
[  1        0.05*side ] [velX]
[ -0.05*side 1        ] [velZ]
And then you do v\*oldSpd/newSpd for both x and z component, cuz the game wants to not change your speed. You can think about the implications of this yourself. (the max and min angle it can change depending on your speed, and other questions)
''(3) update_sliding_angle''
Your velocity vector is added by a vector of magnitude 7\*normal.H, pointing downhill.
Then the resulting vector is multiplied by the lossFactor, which is smth dumb defined by the slope type, and increases depending on the modified fwd. So this step does depend on your speed.
Finally, mario's facing angle changes by 2.8125 (360/128) degrees or less towards your velocity vector's angle.
'''C^ Sliding:'''
Speed - 4 + 1.7\*normal.H (range: -4 ≤ accel < -2.3)
'''HyperSpeed Punching:'''
Speed - 1 + 1.7\*normal.H (range: -1 ≤ accel < 0.7)
'''Effects Overlap for 1f between the C^ and the Punch:'''
Speed - 5 + 3.4\*normal.H  (range: -5 ≤ accel < -1.6)


==arctan strain==
==arctan strain==
134

edits