Page 1 of 1

[RC1] Manialink Quad BGTitle3_x Clouds

Posted: 16 Apr 2013, 11:09
by w1lla
Hi,

When trying to use the following code:

Code: Select all

<quad posn="-164 57 0" sizen="330 15" style="Bgs1" substyle="BgTitle3_2"/> 
It seems i see Storm Clouds or Anything like that? It seems the

Code: Select all

background="0"/background="1"
isnt properly covered.

An example of my code:

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<manialink version="1" background="1" navigable3d="0"> 
	<timeout>0</timeout>
<quad posn="-164 57 0" sizen="330 15" style="Bgs1" substyle="BgTitle3_2"/>
<script><!--
while(True) {
    foreach(Event in PendingEvents) {
        if (Event.Type == CGameManialinkScriptEvent::Type::KeyPress) {
		if(Event.CharPressed == "2424832") //F1
		OpenLink("http://localhost:8080/test1.xml", ::LinkType::Goto); // -> refreshes
        }
    }
    yield;
}
    --></script>
</manialink>
It happens with all BGTitle3_x substyles aswell as Bgs1 styles.

with kind regards,

w1lla

Re: [RC1] Manialink Quad BGTitle3_x Clouds

Posted: 16 Apr 2013, 19:23
by m4rcel
I am not sure, if I understand your problem correctly: How about using "Bgs1InRace" instead of "Bgs1", does this solve the problem?

The BgTitle styles have a shadow or so around the actual Quad. With "Bgs1" these shadoes have transparent backgrounds, whereas with "Bgs1InRace" they don't. Yet not all Bgs1-styles are available as Bgs1InRace and vice versa. So try your luck ^^

Re: [RC1] Manialink Quad BGTitle3_x Clouds

Posted: 16 Apr 2013, 19:23
by w1lla
I tried 'Bgs1inRace' and that solves the problem.

But still it a transparency issue.