当前位置: 首页>>代码示例>>Python>>正文


Python Image.center方法代码示例

本文整理汇总了Python中kivy.uix.image.Image.center方法的典型用法代码示例。如果您正苦于以下问题:Python Image.center方法的具体用法?Python Image.center怎么用?Python Image.center使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在kivy.uix.image.Image的用法示例。


在下文中一共展示了Image.center方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: level_accomplished

# 需要导入模块: from kivy.uix.image import Image [as 别名]
# 或者: from kivy.uix.image.Image import center [as 别名]
 def level_accomplished(self):
     self.app.sound['accomplished'].play()
     
     # store score in config: (i have to convert the string to a list to do specific char writing)
     levels_before = list(self.app.config.get('GamePlay', 'Levels'))
     levels_before[self.level - 1] = '1'
     self.app.config.set('GamePlay', 'Levels', "".join(levels_before))
     self.app.config.write()
     
     # show up a little image with animation: size*2 and out_bounce and the wait 1 sec
     image = Image(source='graphics/accomplished.png', size_hint=(None, None), size=(200, 200))
     image.center=self.center
     animation = Animation(size=(350, 416), duration=1, t='out_bounce')
     animation &= Animation(center=self.center, duration=1, t='out_bounce')
     animation += Animation(size=(350, 416), duration=1) # little hack to sleep for 1 sec
     
     self.add_widget(image)
     animation.start(image)
     animation.bind(on_complete=self.accomplished_animation_complete)
开发者ID:CrazyPyro,项目名称:Deflectouch,代码行数:21,代码来源:main.py

示例2: primary_image

# 需要导入模块: from kivy.uix.image import Image [as 别名]
# 或者: from kivy.uix.image.Image import center [as 别名]
 def primary_image(self):
     frac = 0.3        
     img = Image(source='img/sun/generic_sun.png',color=self.color,mipmap=True,center=self.location.tolist(),allow_stretch=False,size_hint=(None, None),size=(round(75*frac*self.radius), round(75*frac*self.radius)))
     img.center=self.location.tolist()
     return img
开发者ID:facepalm,项目名称:star-nomads,代码行数:7,代码来源:star.py


注:本文中的kivy.uix.image.Image.center方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。