Post by eider on Mar 9, 2016 6:04:29 GMT -8
- Screenshot or Hide UI hides ship map:
screens.rpy:
- Mouse wheel can hide ship map
ship_map.rpy:
- Buttons on left corner of screen are now redundant that ship map is back, and were reported by few users as 'weird' (interrupts story) and additionally closing them when returning to story in VN mode causes Ren'Py to skip to next line. I propose to remove them.
screens.rpy:
script.rpy:
screens.rpy:
2752c2752
< $hideui_action = NullAction() if (BM.battlemode or 'victory2' or 'ship_map' in renpy.get_showing_tags('screens')) else HideInterface()
---
> $hideui_action = NullAction() if (BM.battlemode or 'victory2' in renpy.get_showing_tags('screens')) else HideInterface()
2769c2769
< $screenshot_action = Screenshot() if (BM.battlemode or 'victory2' or 'ship_map' in renpy.get_showing_tags('screens')) else (HideInterface(),Screenshot())
---
> $screenshot_action = Screenshot() if (BM.battlemode or 'victory2' in renpy.get_showing_tags('screens')) else (HideInterface(),Screenshot())
- Mouse wheel can hide ship map
ship_map.rpy:
30,32d29
<
< key "mousedown_4" action NullAction() # damn you renpy, is there no better way to disable key action than doing it on screen itself?
< # its still possible to 'bug' it even with dissolve disabled!
331,332d327
<
< key "mousedown_4" action NullAction()
562,563d556
<
< key "mousedown_4" action NullAction()
- Buttons on left corner of screen are now redundant that ship map is back, and were reported by few users as 'weird' (interrupts story) and additionally closing them when returning to story in VN mode causes Ren'Py to skip to next line. I propose to remove them.
screens.rpy:
2784a2785,2802
>
> screen leftbuttons:
>
> add "UI/circle.png":
> xpos 0 ypos 5
>
> imagebutton:
> xpos 10 ypos 25
> idle "UI/button_research.png"
> hover tr_hoverglow("UI/button_research.png")
> activate_sound "sound/beep1.ogg"
> action ShowUpgrades()
> imagebutton:
> xpos 10 ypos 92
> idle "UI/button_store.png"
> hover tr_hoverglow("UI/button_store.png")
> activate_sound "sound/beep1.ogg"
> action ShowStore()
script.rpy:
621a622,623
> show screen leftbuttons
>
2645a2648
> hide screen leftbuttons
2972a2976,2977
> show screen leftbuttons
>
3453a3459
> hide screen leftbuttons
3568a3575,3576
> show screen leftbuttons
>
3600a3609
> hide screen leftbuttons
3671a3681,3682
> show screen leftbuttons
>
3757a3769
> hide screen leftbuttons
3840a3853,3854
> show screen leftbuttons
>
4537a4552
> hide screen leftbuttons
4697a4713,4714
> show screen leftbuttons
>
5375a5393
> hide screen leftbuttons
5758a5777,5778
> show screen leftbuttons
>
6061a6082
> hide screen leftbuttons
6180a6202,6203
> show screen leftbuttons
>
6386a6410
> hide screen leftbuttons
7579a7604,7605
>
> hide screen leftbuttons
8047a8074
> hide screen leftbuttons