Jump to content
Sign in to follow this  
Meatball0311

Dialog Picture is transparent

Recommended Posts

I have seen some topics about this, but I am still not understanding how to make my dialog picture not transparent.  At the moment it looks like this

 

PNrGLrP.jpg?1

 

in my defines.hpp i have RscPicture like this

class RscPicture
{
    access = 0;
    idc = -1;
    type = CT_STATIC;
    style = ST_PICTURE;
    colorBackground[] = {0,0,0,0};
    colorText[] = {1,1,1,1};
    font = "PuristaLight";
    sizeEx = 0;
    lineSpacing = 0;
    text = "";
    fixedWidth = 0;
    shadow = 0;
    x = 0;
    y = 0;
    w = 0.2;
    h = 0.15;
};

and in my dialogs.hpp i have the Picture setup like this

class GARMIN401_PICTURE: RscPicture
{
	idc = 1200;
	text = "acc_soc_garmin401_dialog.paa";
	x = 0.388542 * safezoneW + safezoneX;
	y = 0.316666 * safezoneH + safezoneY;
	w = 0.225 * safezoneW;
	h = 0.455259 * safezoneH;
};

What do I need to do to get the image to show up?

 

 

FIXED:

Worked on it all day and tried everything so I don't know if it was a combination of things or as simply as making my texture 512x512

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×