Replace the "" around birdkeeper, you have the decorative directional quotation marks which don't work (notice how they look different to the ones surrounding Mom)
Replace the "" around birdkeeper, you have the decorative directional quotation marks which don't work (notice how they look different to the ones surrounding Mom)
I have an intro event to run the portraits. When I changed the settings to turn off the outlines, it doesn't load the portraits in the intro scene. Any other event past the scene works fine.
Once I put back the outlines, run the game, the portraits come back and any other event past the intro has an outline. I wish to have no outlines at all.
I have an intro event to run the portraits. When I changed the settings to turn off the outlines, it doesn't load the portraits in the intro scene. Any other event past the scene works fine.
Once I put back the outlines, run the game, the portraits come back and any other event past the intro has an outline. I wish to have no outlines at all.
I believe the problem is caused by the Show Picture event command. I have update the script to force the portraits to draw over any pictures shown with the Show Picture event command. Thank you for pointing this out as I wouldn't have noticed otherwise (I don't use Show Picture ever)
I believe the problem is caused by the Show Picture event command. I have update the script to force the portraits to draw over any pictures shown with the Show Picture event command. Thank you for pointing this out as I wouldn't have noticed otherwise (I don't use Show Picture ever)
Thanks for making this plugin! For my use case, it would be useful if I can have the portrait show up at a chosen location on screen. Do you know if there is a way to do that?
Thanks for making this plugin! For my use case, it would be useful if I can have the portrait show up at a chosen location on screen. Do you know if there is a way to do that?
How big are your portraits? This script was designed with large "visual novel style" portraits in mind, so if your images aren't roughly the same size as the screen they will be mostly covered by the dialog box.
Regardless, you can move the portrait up by changing line 44 of script_portraits.rb
Ruby:
@sprite.y = Graphics.height
to something like
Code:
@sprite.y = Graphics.height - 96
I wouldn't recommend it however as the animation to show/hide portraits won't look correct.
How big are your portraits? This script was designed with large "visual novel style" portraits in mind, so if your images aren't roughly the same size as the screen they will be mostly covered by the dialog box.
Regardless, you can move the portrait up by changing line 44 of script_portraits.rb
Ruby:
@sprite.y = Graphics.height
to something like
Code:
@sprite.y = Graphics.height - 96
I wouldn't recommend it however as the animation to show/hide portraits won't look correct.
Roughly the same size as your screen. As said in the resource description I'd recommend drawing your portraits on a 192x384 canvas (or more accurately 96x192 then scale the image 200% with nearest neighbour filtering to make sure there's no mismatch in pixel density).
I'm not sure what you mean by the colour of the speakers, if you mean the colour of the outline then this can be achieved either by changing the RGB values of DEFAULT_OUTLINE_COLOR in config.rb from
Ruby:
DEFAULT_OUTLINE_COLOR = Color.new(255,255,255)
to something like
Ruby:
DEFAULT_OUTLINE_COLOR = Color.new(255,0,128)
or by calling
Ruby:
Rf.portrait_outline_color = Color.new(255,0,128)
Obviously with whatever RGB values you want.
If you want to change the colour of the text in the speaker name window, there is currently no way to do this but I can look into adding it.
Roughly the same size as your screen. As said in the resource description I'd recommend drawing your portraits on a 192x384 canvas (or more accurately 96x192 then scale the image 200% with nearest neighbour filtering to make sure there's no mismatch in pixel density).
I'm not sure what you mean by the colour of the speakers, if you mean the colour of the outline then this can be achieved either by changing the RGB values of DEFAULT_OUTLINE_COLOR in config.rb from
Ruby:
DEFAULT_OUTLINE_COLOR = Color.new(255,255,255)
to something like
Ruby:
DEFAULT_OUTLINE_COLOR = Color.new(255,0,128)
or by calling
Ruby:
Rf.portrait_outline_color = Color.new(255,0,128)
Obviously with whatever RGB values you want.
If you want to change the colour of the text in the speaker name window, there is currently no way to do this but I can look into adding it.
Thank you, I solved my problem, about the color change, it would be about the text in the window. It would be interesting to put different colors for different characters, thanks for the help friend.
This section is for the discussion of the tutorials and resources on Eevee Expo. To find tutorials and resources, check out the Tutorial and Resource Manager for optimal navigation.