Red color for alien drops

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Rullez

Banned
Banned
Joined
Jul 4, 2019
Messages
20
Credits
9
User Interface / PythonTex Tail.cpp open and add at end of includes

#include "PythonPlayer.h"

search for:

pTextTail->pOwnerTextInstance->SetColor(1.0f, 1.0f, 0.0f);

add above:

CInstanceBase * pInstanceBase = CPythonCharacterManager::Instance().GetMainInstancePtr();
if (pInstanceBase)
{
if (strcmp(pInstanceBase->GetNameString(), c_szName))
pTextTail->pOwnerTextInstance->SetColor(1.0f, 0.0f, 0.0f);
}



just like in the attached image:
http://prntscr.com/ojn4kn ( the image was to large)





#If not appear to red for other:
https://mega.nz/#!Js9RTQTC!qg75-15a_AEwZ0GuhLYqCsrnMG7VFTF_c-YVkdnMJ98

try again with a rebuild all
 
Back
Top