10000 Merge branch 'development' into gui/controller · pythonarcade/arcade@40aff3c · GitHub
[go: up one dir, main page]

Skip to content

Commit 40aff3c

Browse files
committed
Merge branch 'development' into gui/controller
2 parents f8bb36b + 861f1e2 commit 40aff3c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

arcade/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ class Text:
187187
text_2 = Text("Hello, World 2", 0, 100, batch=batch)
188188
text_3 = Text("Hello, World 2", 0, 150, batch=batch)
189189
# Draw the batch
190-
bach.draw()
190+
batch.draw()
191191
# Remove a text instance from the batch
192192
text_2.batch = None
193193

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def run_util(filename, run_name="__main__", init_globals=None):
217217

218218
# General information about the project.
219219
project = 'Python Arcade Library'
220-
copyright = '2024, Paul Vincent Craven'
220+
copyright = '2025, Paul Vincent Craven'
221221
author = 'Paul Vincent Craven'
222222

223223
# The version info for the project you're documenting, acts as replacement for

doc/tutorials/platform_tutorial/step_10.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ our score. This will just be an integer initially set to 0. We will set this in
3434
self.score = 0
3535
3636
# Within setup
37-
self.gui_camera = arcade.SimpleCamera(viewport=(0, 0, width, height))
37+
self.gui_camera = arcade.Camera2D()
3838
self.score = 0
3939
4040
Now we can go into our ``on_update`` function, and when the player collects a coin, we can increment our score variable.

0 commit comments

Comments
 (0)
0