This commit is contained in:
2024-07-14 23:28:39 +03:00
parent cf901c5793
commit 38ecbad82e
4 changed files with 16 additions and 3 deletions

View File

@@ -47,6 +47,7 @@ def process(c):
desktop_createConfigPlayerSprites(p)
desktop_createConfigStaticSprites(p)
desktop_loadConfigTextures(p)
desktop_movePlayerInstantly(p)
ctrl.registerCallback(process)
ctrl.set("cfgPath", CFG)

View File

@@ -78,3 +78,15 @@ def desktop_loadConfigTextures(p):
p.textures[name] = tex
# Report finish.
p.ctrl.set("didLoadConfigTextures", True)
# Move player instantly along X axis
#
# Conditions:
# 1. Mouse has just been clicked
def desktop_movePlayerInstantly(p):
if (
p.c.recentField != "didClickMouse"
):
return
p.player.left = p.c.didClickMouse[0]

View File

@@ -17,8 +17,7 @@ class desktop_Window(arcade.Window):
self.p.playerSprites.draw()
def on_mouse_press(self, x, y, button, key_modifiers):
print("mouse press:", x, y)
pass
self.p.ctrl.set("didClickMouse", [x, y])
def on_update(self, delta):
pass
self.p.playerSprites.update_animation()

View File

@@ -4,6 +4,7 @@ class ht_Context:
self.cfgDir = None
self.cfgPath = None
self.cfgTree = {}
self.didClickMouse = []
self.didCreateConfigPlayerSprites = False
self.didCreateConfigStaticSprites = False
self.didLaunch = False