ゲーム用に複数のカメを持っていたい。カメは主人公で、モンスターは私が追加した別のカメです。どのようにシェイプを追加するのですか? HERESにコード:Python複数の亀の形
import turtle
monster = turtle.Turtle()
monster.addshape('enemt.gif')
monster.shape('enemt.gif')
monster.goto(0, 0)
私はエラー
Traceback (most recent call last):
File "C:\Users\Alfie\Desktop\Tutorial Game\Tutorial Game.py", line 77, in <module>
monster.addshape('enemt.gif')
AttributeError: 'Turtle' object has no attribute 'addshape'
'addShape'は機能しますか?名前は大文字と小文字を区別します。 –
いいえ、そうではありません。再度同じエラー –