1
I am starting the use of Pycharm, creating a test with Pygame.
I realize that some Pygame methods do not appear in Pycharm Autocomplete.
For example, if I want to put one pygame.mask.from_surface()
, typing pygame.mas
nothing comes. But if I complete manually the mask
and press the .
, then appears correctly the auto-complete from_surface()
.
Ex:
import pygame
carro = pygame.image.load("imagens/onix.png").convert_alpha()
carro_mask = pygame.mas # aqui já deveria aparece o autocompletar
This also appears for other situations, for example, if I want to use carro.get_rect()
, then nothing appears after typing carro.
Here my current configuration:
How to fix this?
updated my answer, @Rogério-Dec
– JonatasCD