I want to use the self variables in one class and use them in another class which already has its own self variables how to do I do this. Some code here to help.
class A():
self.health = 5
class B(): # This class already has a self function
for sprite in all_sprites:
if pygame.sprite.collide_circle(self, sprite):
self.collide = True
self.health -= 0.1
The following code may help to explain how to use
self
in a class. Notice on line 45 thatself
is passed to thecollide
method of the sprite class. Inside of a class, you can passself
(which represents the current instance you are working with) to any other instance method or function if desired.