本文整理汇总了Python中Img.imgret2方法的典型用法代码示例。如果您正苦于以下问题:Python Img.imgret2方法的具体用法?Python Img.imgret2怎么用?Python Img.imgret2使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Img
的用法示例。
在下文中一共展示了Img.imgret2方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Woodpile
# 需要导入模块: import Img [as 别名]
# 或者: from Img import imgret2 [as 别名]
'''
Created on 13 Jun 2015
The Trees Are Growing Once More
@author: NoNotCar
'''
import Object
import Entity
import Vehicles
import Img
import Buyers
trimg = Img.imgret2("Tree.png")
class Woodpile(Entity.ResourceB):
img = Img.imgret2("Wood.png")
value = 100
name = "Woodpile"
class Paper(Entity.ResourceB):
img = Img.imgret2("Paper.png")
value = 15
name = "Paper"
class WoodpileSp(Entity.ResourceB):
img = Img.imgret2("WoodSp.png")
value = 500
name = "WoodpileSp"
示例2: imgref2
# 需要导入模块: import Img [as 别名]
# 或者: from Img import imgret2 [as 别名]
def imgref2(fil):
return Img.imgret2("Fishery/"+fil)
示例3:
# 需要导入模块: import Img [as 别名]
# 或者: from Img import imgret2 [as 别名]
# Import non-image modules here
import pygame
import sys
# init video
pygame.init()
screen = pygame.display.set_mode((640, 640))
# image modules
import World
import Generators
import Img
import GUI
import Tutorial
pygame.display.set_icon(Img.imgret2("Monolith.png"))
pygame.display.set_caption("monolith")
numplayers = 1
wgen = 0
pset = 0
puzzles = 0
pnum = 0
c = pygame.time.Clock()
Img.musply("Planets/1. Mars.ogg")
nland = Img.imgret("NiceLand.png")
rgb = [200, 255, 255]
tick = 0
cont = True
kp = True
# titlescreen
srect = pygame.Rect(0, 0, 0, 0)