Automated merge with ssh://hg.lindenlab.com/paulgproductengine/exp-1404/
commit
aaabea2ced
|
|
@ -1836,7 +1836,7 @@
|
|||
<key>Type</key>
|
||||
<string>Boolean</string>
|
||||
<key>Value</key>
|
||||
<integer>0</integer>
|
||||
<integer>1</integer>
|
||||
</map>
|
||||
<key>Cursor3D</key>
|
||||
<map>
|
||||
|
|
|
|||
|
|
@ -44,12 +44,20 @@ LLHUDEffectBlob::~LLHUDEffectBlob()
|
|||
{
|
||||
}
|
||||
|
||||
void LLHUDEffectBlob::markDead()
|
||||
{
|
||||
mImage = NULL;
|
||||
|
||||
LLHUDEffect::markDead();
|
||||
}
|
||||
|
||||
void LLHUDEffectBlob::render()
|
||||
{
|
||||
F32 time = mTimer.getElapsedTimeF32();
|
||||
if (mDuration < time)
|
||||
{
|
||||
markDead();
|
||||
return;
|
||||
}
|
||||
|
||||
LLVector3 pos_agent = gAgent.getPosAgentFromGlobal(mPositionGlobal);
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ class LLHUDEffectBlob : public LLHUDEffect
|
|||
public:
|
||||
friend class LLHUDObject;
|
||||
|
||||
void markDead();
|
||||
|
||||
void setPixelSize(S32 pixels) { mPixelSize = pixels; }
|
||||
|
||||
protected:
|
||||
|
|
|
|||
|
|
@ -2028,7 +2028,7 @@ Returns a string with the requested data about the region
|
|||
<string name="PlacesNoMatchingItems">Didn't find what you're looking for? Try [secondlife:///app/search/places/[SEARCH_TERM] Search].</string>
|
||||
<string name="FavoritesNoMatchingItems">Drag a landmark here to add it to your favorites.</string>
|
||||
<string name="InventoryNoTexture">You do not have a copy of this texture in your inventory</string>
|
||||
<string name="InventoryInboxNoItems">Items purchased through the marketplace will be delivered here.</string>
|
||||
<string name="InventoryInboxNoItems">When you purchase or otherwise receive an item, it will appear here so you can drag it to a folder in your inventory, or delete it if you do not wish to keep it.</string>
|
||||
<string name="MarketplaceURL">http://marketplace.[DOMAIN_NAME]</string>
|
||||
<string name="MarketplaceURL_CreateStore">http://marketplace.[DOMAIN_NAME]/create_store</string>
|
||||
<string name="MarketplaceURL_LearnMore">http://marketplace.[DOMAIN_NAME]/learn_more</string>
|
||||
|
|
|
|||
Loading…
Reference in New Issue