Skip to content

Commit 0efa2a9

Browse files
committed
Update README.md to remove image and clarify project description; rename debug agent script in start.py
1 parent 8180d57 commit 0efa2a9

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
[![Documentation Status](https://readthedocs.org/projects/clsframework/badge/?version=latest)](https://clsframework.github.io/docs/introduction/)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
55

6-
![alt text](image.png)
7-
86
PY2D Soccer Simulation Base Code is a base code for RoboCup 2D Soccer Simulation teams, which is written in Python.
97
This base code is powered by the [Cross Language Soccer Framework](https://arxiv.org/pdf/2406.05621), which allows you to create a team by using any programming language that supports gRPC or Thrift.
108
This base code uses `Helios Base` as a proxy to communicate with the RoboCup 2D Soccer Simulation server.

image.png

-3.72 MB
Binary file not shown.

start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def run_start_script(args, rpc_port):
4646
arguments = ['bash']
4747
if args.player or args.coach or args.goalie:
4848
if args.debug:
49-
arguments += ['start-agent-debug.sh', '--coach' if args.coach else '--goalie' if args.goalie else '--player']
49+
arguments += ['start-debug-agent.sh', '--coach' if args.coach else '--goalie' if args.goalie else '--player']
5050
else:
5151
arguments += ['start-agent.sh', '--coach' if args.coach else '--goalie' if args.goalie else '--player']
5252
else:

0 commit comments

Comments
 (0)