Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道如何从另一个类中引用 Livewires 中 Sprite 对象的“顶部”属性?
假设这Sprite是你处理的课程......
Sprite
这是您访问对象属性的方式:
>>> a = Sprite() >>> a.top
这是您访问类属性的方式:
>>> Sprite.top
这是你要找的吗?