Page MenuHomeFeedback Tracker

[Feature Request] New Title Effect: "PLAIN BOTTOM"
New, NormalPublic

Description

Ref: https://community.bistudio.com/wiki/Title_Effect_Type

To display text at the bottom (say 10%).

Reasoning:
There is "PLAIN DOWN" - before A3 it was 75% down.
In A3 due to macro based on chat positioning, it is more like 65%.
However this still obscure most of the time too much of the scene.
As such a new type to show really "out of the way" would be useful.

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7
Category
Scripting
Additional Information

Ref

class RscTitlesText
{
 fontBasic = "RobotoCondensed";
 sizeExBasic = "(			(			(			((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
 fontDown = "RobotoCondensed";
 sizeExDown = "(			(			(			((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
 offsetDown = "((		(profilenamespace getvariable [""IGUI_GRID_CHAT_Y"",		(safezoneY + safezoneH - 10.5 * 			(			(			((safezoneW / safezoneH) min 1.2) / 1.2) / 25))]) + 3 * 		(			(			(			((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)) - 0.5)";
};

Effort wise its probably just to duplicate the "PLAIN DOWN" code in the engine, yet introduce a sizeExBottom and offsetBottom in RscTitlesText

Event Timeline

În A3 offsetDown is set by default to: 0.175997

Prior to A3:

class RscTitlesText
{
 fontBasic = "EtelkaNarrowMediumPro";
 sizeExBasic = 0.034;
 fontDown = "EtelkaNarrowMediumPro";
 sizeExDown = 0.034;
 offsetDown = 0.38;
};
h- added a subscriber: h-.Aug 29 2020, 1:54 PM