Skip to content

Commit 1716b01

Browse files
committed
Switching from gradle to pip for the rlbot dependency.
1 parent c3ca330 commit 1716b01

8 files changed

Lines changed: 5 additions & 314 deletions

File tree

build.gradle

Lines changed: 0 additions & 46 deletions
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-53 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 6 deletions
This file was deleted.

gradlew

Lines changed: 0 additions & 172 deletions
This file was deleted.

gradlew.bat

Lines changed: 0 additions & 84 deletions
This file was deleted.

python_example/python_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import math
22

3-
from RLBotFramework.agents.base_flatbuffer_agent import BaseFlatbufferAgent, SimpleControllerState
4-
from RLBotMessages.flat import GameTickPacket
3+
from rlbot.agents.base_flatbuffer_agent import BaseFlatbufferAgent, SimpleControllerState
4+
from rlbot.messages.flat import GameTickPacket
55

66
URotationToRadians = math.pi / float(32768)
77

requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

run.bat

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@rem Change the working directory to the location of this file so that relative paths will work
22
cd /D "%~dp0"
33

4-
call ./gradlew.bat --no-daemon updateRLBot
4+
@rem You will automatically get updates for all versions starting with "0.0.".
5+
python -m pip install rlbot==0.0.* --upgrade
56

6-
python ./build/framework/runner.py
7+
python -c "from rlbot import runner; runner.main();"

0 commit comments

Comments
 (0)