求助 如何按下“w”键使一个图像“♀”转向向上移动 按一次移动一格- @echo off
- if %1==w goto w
- if %1==s goto s
- if %1==a goto a
- if %1==d goto d
- if %1==%1 goto end
- :w
- cls
- set "a="&set "b="
- echo %a%
- echo %b%
- goto end
- :s
- cls
- set "a="&set "b="
- echo %a%
- echo %b%
- goto end
- :a
- cls
- set "a="&set "b="
- echo %a%
- echo %b%
- goto end
- :d
- cls
- set "a="&set "b="
- echo %a%
- echo %b%
- goto end
- :end
复制代码 这是我能想到的办法了 很明显错的无语
希望大家来帮下忙 在下先行谢过了 |