mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-03-13 20:19:25 +01:00
Merge pull request 'Fixes silly gallery bug' (#217) from GManon/SnootGame:imanidiot into Patch8-RAGE
Reviewed-on: https://git.snootgame.xyz/Cavemanon/SnootGame/pulls/217
This commit is contained in:
commit
cdaa98b098
1 changed files with 3 additions and 1 deletions
|
@ -68,6 +68,7 @@ init 2 python:
|
|||
|
||||
item = {
|
||||
"item": name,
|
||||
"image": rcg,
|
||||
"cg": cg_(rcg, 1920),
|
||||
}
|
||||
|
||||
|
@ -79,6 +80,7 @@ init 2 python:
|
|||
|
||||
gallery_dic['Animations'] = [{
|
||||
"item": 'fang tail',
|
||||
"image": 'images/animations/fang tail thumbnail.webp',
|
||||
"cg": 'images/animations/fang tail thumbnail.webp',
|
||||
}]
|
||||
renpy.image("fang tail", Movie(loop=True,play='images/animations/fang tail.webm')) # Since we are hard-coding might as well.
|
||||
|
@ -216,7 +218,7 @@ screen view_image(item, _origin):
|
|||
pagekeys True
|
||||
xfill False
|
||||
yfill False
|
||||
add item['item'] zoom 1.0 anchor (0.55, 0.55)
|
||||
add item['image'] zoom 1.0 anchor (0.55, 0.55)
|
||||
|
||||
#Reuse quick buttons. Ren'Py handles touch input lazy, it doesn't have
|
||||
#double finger pinch zoom, it translates taps as mouse events - have to use
|
||||
|
|
Loading…
Reference in a new issue