Simple Bullet Shadowing Surfer
Fragment of a discussion from Talk:BasicSurfer
← Thread:Talk:BasicSurfer/Simple Bullet Shadowing Surfer/reply (7)
Jump to navigation
Jump to search
← Thread:Talk:BasicSurfer/Simple Bullet Shadowing Surfer/reply (7)
- Let's say we have wave1(distanceTraveled 300) and wave2(distanceTraveled 100).
- I shoot a bullet and it is calculated that it will intersect with wave2 at the x point so I set the danger to 0.
- The bullet collides with the bullet that is on wave1 and the spot on wave2 isn't safe anymore.
Dsekercioglu (talk)
Okay, I think I get it. Would the formula be
PositionDanger = bulletPassedWave == true ? 0 : normalDanger
And if you are surfing multiple waves, you can estimate the chance that the wave2 will have a shadow by calculating in the percent chance the bullet will collide and add that to your calculations. Of course, once wave1 breaks, you can know for sure whether the position is 100% safe or not.
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
Return to Thread:Talk:BasicSurfer/Simple Bullet Shadowing Surfer/reply (9).