Skip to content

Commit 94ec2ea

Browse files
authored
Merge pull request #607 from aaronfranke/3.2-readme
Update README for the new 3.2 branch
2 parents ead2777 + 40aec7c commit 94ec2ea

File tree

7 files changed

+24
-12
lines changed

7 files changed

+24
-12
lines changed

.editorconfig

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
root = true
33

44
# Unix-style newlines with a newline ending every file.
5-
[*.cs]
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
68
insert_final_newline = true
9+
10+
[*.cs]
711
csharp_space_after_cast = false
812
indent_size = 4
913

1014
[*.csproj]
15+
insert_final_newline = false
1116
indent_size = 2

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Bug Report
33
about: Report a bug with one of the demo projects.
4-
title: ''
4+
title: ""
55
labels: bug
6-
assignees: ''
6+
assignees: ""
77

88
---
99

.github/ISSUE_TEMPLATE/feature---enhancement-request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Feature / Enhancement Request
33
about: Adding new features or improving existing ones.
4-
title: ''
4+
title: ""
55
labels: enhancement
6-
assignees: ''
6+
assignees: ""
77

88
---
99

2d/physics_tests/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This demo contains a series of tests for the 2D
44
physics engine.
55

66
They can be used for different purpose:
7+
78
- Functional tests to check for regressions and
89
behavior of the 2D physics engine
910
- Performance tests to evaluate performance

3d/physics_tests/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This demo contains a series of tests for the 3D
44
physics engine.
55

66
They can be used for different purpose:
7+
78
- Functional tests to check for regressions and
89
compare the behavior between physics engines
910
- Performance tests to evaluate and compare

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@ be used with [Godot Engine](https://godotengine.org), the open source
66

77
## Godot versions
88

9-
- The [`master`](https://github.com/godotengine/godot-demo-projects) branch is compatible with the latest stable Godot version (currently 3.2).
9+
- The [`master`](https://github.com/godotengine/godot-demo-projects) branch is compatible with the latest stable Godot version (currently 3.3.x).
1010
- If you are using an older version of Godot, use the appropriate branch for your Godot version:
1111

12-
- [`3.1`](https://github.com/godotengine/godot-demo-projects/tree/3.1) branch
13-
for Godot 3.1.x.
14-
- [`3.0`](https://github.com/godotengine/godot-demo-projects/tree/3.0) branch
15-
for Godot 3.0.x.
16-
- [`2.1`](https://github.com/godotengine/godot-demo-projects/tree/2.1) branch
17-
for Godot 2.1.x.
12+
- [`3.2`](https://github.com/godotengine/godot-demo-projects/tree/3.2)
13+
branch for Godot 3.2.x.
14+
- [`3.1`](https://github.com/godotengine/godot-demo-projects/tree/3.1)
15+
branch for Godot 3.1.x.
16+
- [`3.0`](https://github.com/godotengine/godot-demo-projects/tree/3.0)
17+
branch for Godot 3.0.x.
18+
- [`2.1`](https://github.com/godotengine/godot-demo-projects/tree/2.1)
19+
branch for Godot 2.1.x.
1820

1921
## Importing all demos
2022

@@ -40,6 +42,7 @@ desktop. For the best performance, consider downloading the demos.
4042
- [Source code](https://github.com/godotengine/godot)
4143
- [Documentation](http://docs.godotengine.org)
4244
- [Community hub](https://godotengine.org/community)
45+
- [TPS demo](https://github.com/godotengine/tps-demo)
4346

4447
## License
4548

networking/webrtc_signaling/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Check out this demo on the asset library: https://godotengine.org/asset-library/
1717
The protocol is text based, and composed by a command and possibly multiple payload arguments, each separated by a new line.
1818

1919
Messages without payload must still end with a newline and are the following:
20+
2021
- `J: ` (or `J: <ROOM>`), must be sent by client immediately after connection to get a lobby assigned or join a known one.
2122
This messages is also sent by server back to the client to notify assigned lobby, or simply a successful join.
2223
- `I: <ID>`, sent by server to identify the client when it joins a room.
@@ -27,6 +28,7 @@ Messages without payload must still end with a newline and are the following:
2728
When a lobby is sealed, no new client will be able to join, and the lobby will be destroyed (and clients disconnected) after 10 seconds.
2829

2930
Messages with payload (used to transfer WebRTC parameters) are:
31+
3032
- `O: <ID>`, used to send an offer.
3133
- `A: <ID>`, used to send an answer.
3234
- `C: <ID>`, used to send a candidate.

0 commit comments

Comments
 (0)