Bug fixes
* Default renderer to Auto for compatibility reasons * Fixed animation assignments for dolls * Fixed missing side images for non-doll speakers
This commit is contained in:
parent
56ccffb8a2
commit
bf5710bf10
@ -99,10 +99,7 @@ init python:
|
||||
astoria.set_emote(emote)
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
astoria.animation = animation
|
||||
else:
|
||||
astoria.animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
|
@ -97,10 +97,7 @@ init python in character:
|
||||
renpy.store.cho.set_emote(emote)
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
renpy.store.cho.animation = animation
|
||||
else:
|
||||
renpy.store.cho.animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
|
@ -89,10 +89,7 @@ init python:
|
||||
hermione.set_emote(emote)
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
hermione.animation = animation
|
||||
else:
|
||||
hermione.animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
|
@ -39,10 +39,7 @@ init python:
|
||||
hooch.set_emote(emote)
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
hooch.animation = animation
|
||||
else:
|
||||
hooch.animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
|
@ -96,10 +96,7 @@ init python:
|
||||
luna.set_emote(emote)
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
luna.animation = animation
|
||||
else:
|
||||
luna.animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
|
@ -36,10 +36,7 @@ init python:
|
||||
redraw = True
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
snape_animation = animation
|
||||
else:
|
||||
snape_animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
@ -53,7 +50,12 @@ init python:
|
||||
if wand:
|
||||
sprite = Fixed(sprite, "characters/snape/main/wand.webp")
|
||||
|
||||
renpy.show(name=tag, at_list=[base_transform] + snape_animation, layer=layer, what=sprite, zorder=snape_zorder)
|
||||
at_list = [base_transform]
|
||||
|
||||
if animation:
|
||||
at_list.append(snape_animation)
|
||||
|
||||
renpy.show(name=tag, at_list=at_list, layer=layer, what=sprite, zorder=snape_zorder)
|
||||
|
||||
if not renpy.in_rollback():
|
||||
if trans:
|
||||
|
@ -94,10 +94,7 @@ init python:
|
||||
susan.set_emote(emote)
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
susan.animation = animation
|
||||
else:
|
||||
susan.animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
|
@ -122,10 +122,7 @@ init python:
|
||||
redraw = True
|
||||
|
||||
if animation != False:
|
||||
if isinstance(animation, list):
|
||||
tonks.animation = animation
|
||||
else:
|
||||
tonks.animation = [animation]
|
||||
redraw = True
|
||||
|
||||
if flip != None:
|
||||
|
@ -16,7 +16,7 @@ init python:
|
||||
# Image properties
|
||||
self.zorder = 15
|
||||
self.layer = "screens"
|
||||
self.animation = []
|
||||
self.animation = None
|
||||
self.tag = get_character_tag(name)
|
||||
|
||||
# Transform properties
|
||||
@ -53,9 +53,6 @@ init python:
|
||||
at_list = [base_transform]
|
||||
|
||||
if animation:
|
||||
if isinstance(animation, list):
|
||||
at_list += animation
|
||||
else:
|
||||
at_list.append(animation)
|
||||
|
||||
renpy.show(name=self.tag, at_list=at_list, layer=self.layer, what=self.get_image(), zorder=self.zorder)
|
||||
|
@ -29,8 +29,8 @@ screen say(who, what, side_image=None, icon=None):
|
||||
if not renpy.get_screen("choice"):
|
||||
use invisible_button(action=Function(ui.saybehavior), keysym="dismiss")
|
||||
|
||||
#if side_image:
|
||||
add SideImage()
|
||||
if side_image:
|
||||
add side_image yalign 1.0 yanchor 1.0 zoom 0.5
|
||||
|
||||
window id "window":
|
||||
style gui.theme("say_window")
|
||||
|
@ -6,7 +6,7 @@
|
||||
default preferences.text_cps = 40
|
||||
default preferences.afm_time = 15
|
||||
default preferences.pad_enabled = False
|
||||
default preferences.renderer = "gl2"
|
||||
default preferences.renderer = "auto"
|
||||
default preferences.gl_powersave = False
|
||||
default preferences.audio_when_minimized = False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user