Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
221 views
in Technique[技术] by (71.8m points)

python - How to make an imported module blit onto a surface from the main script?

In my main file I have a surface called win. I import a module like so from draw import *.

def draw(image,x,y):
    win.blit(image,(x,y))

This is a function from draw. It doesn't work because win is not defined. How to make it defined?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Add an additional parameter for the target surface to the function:

def draw(target, image, x, y):
    target.blit(image, (x, y))

Pass win to the draw function:

draw(win, image, x, y)

Alternatively, you can create a variable in the module's global namespace:

draw.py

traget = None

def draw(image, x, y):
    traget.blit(image, (x, y))

Use the module:

import pygame
import draw

# [...]

draw.target = win

# [...]

draw.draw(image, x, y)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...