Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ray collision #79

Merged
merged 27 commits into from
Aug 14, 2021
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a50065f
Initial commit, WIP, will replace
Jun 24, 2021
8c8e1e9
stashing changes
Jun 25, 2021
11bc21a
Merge branch 'dev' of https://github.com/HagenSR/byte_le_royale_2022 …
Jun 29, 2021
46e6f23
small fixes
Jun 29, 2021
4b4aaa1
small fix
Jun 30, 2021
d773dd1
Merge branch 'dev' into Ray-Collision
Anomalous-Creator Jun 30, 2021
f122c00
missing import
Jul 1, 2021
f4813a2
Merge branch 'Ray-Collision' of https://github.com/HagenSR/byte_le_ro…
Jul 1, 2021
253c281
Implementation change
Anomalous-Creator Jul 28, 2021
7189a1a
Ray fixes
Anomalous-Creator Aug 6, 2021
7f9b1ef
Merge
Anomalous-Creator Aug 6, 2021
ea8c10b
Automated autopep8 fixes
actions-user Aug 6, 2021
9fbaa26
fixes
Anomalous-Creator Aug 6, 2021
d188228
Merge branch 'Ray-Collision' of https://github.com/HagenSR/byte_le_ro…
Anomalous-Creator Aug 6, 2021
63bebe2
json changes
Anomalous-Creator Aug 6, 2021
d56773c
Endpoint fixes
Anomalous-Creator Aug 7, 2021
0f51809
Automated autopep8 fixes
actions-user Aug 7, 2021
071369d
recreated deleted file
Anomalous-Creator Aug 8, 2021
947edce
Automated autopep8 fixes
actions-user Aug 8, 2021
5986634
moved conditionals
Anomalous-Creator Aug 8, 2021
e9bd24c
horizontal fixes
Anomalous-Creator Aug 10, 2021
ec758e7
Merge branch 'dev' of https://github.com/HagenSR/byte_le_royale_2022 …
Anomalous-Creator Aug 10, 2021
6ab9af5
initialized origin and endpoint to none
Anomalous-Creator Aug 10, 2021
6780375
Automated autopep8 fixes
actions-user Aug 10, 2021
8180442
fixes
Anomalous-Creator Aug 10, 2021
a1320a3
Merge branch 'Ray-Collision' of https://github.com/HagenSR/byte_le_ro…
Anomalous-Creator Aug 10, 2021
3a10114
Automated autopep8 fixes
actions-user Aug 10, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
missing import
  • Loading branch information
Christopher Parks committed Jul 1, 2021
commit f122c00f4f89eaa365c59aef36eb3807a098701a
1 change: 1 addition & 0 deletions game/common/ray.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from game.common.enums import ObjectType
from game.common.stats import GameStats
from game.common.game_object import GameObject

class Ray(GameObject):
def __init__(self, origin, endpoint, collision=None, damage=None):
Expand Down