Mesh with "Exit", "Home" or similar
-
- Godlike
- Posts: 2956
- Joined: Fri Sep 25, 2015 9:01 pm
- Location: moved without proper hashing
Mesh with "Exit", "Home" or similar
I'm looking for a mesh that shows the text "Exit", "Home", "Base" or such. Background is that I want to integrate it into a map without rebuilding that map. Therefore doing that with a texture on a brush is not usable.
"If Origin not in center it be not in center." --Buggie
-
- Godlike
- Posts: 6443
- Joined: Sun May 09, 2010 6:15 pm
- Location: On the roof.
Re: Mesh with "Exit", "Home" or similar
Do you want to inject a decoration with that Text in Run-Time ?
-
- Godlike
- Posts: 3230
- Joined: Sat Mar 21, 2020 5:32 am
Re: Mesh with "Exit", "Home" or similar
Not really get what you want. Possible decoration Panel with mesh IPanel this is what you looking for.
You can set any flat texture. For example some custom embed in level. On texture can be written anything.
Almost same as sprite, but not rotate on camera turn.
You can set any flat texture. For example some custom embed in level. On texture can be written anything.
Almost same as sprite, but not rotate on camera turn.
-
- Godlike
- Posts: 10244
- Joined: Thu Jun 30, 2011 8:12 pm
- Personal rank: God of Fudge
- Location: Palo Alto, CA
Re: Mesh with "Exit", "Home" or similar
You mean like a sign?
· http://unreal-games.livejournal.com/
· https://unrealarchive.org/authors/evilgrins.html
· https://www.facebook.com/groups/UTcorps
· https://unrealarchive.org/authors/evilgrins.html
· https://www.facebook.com/groups/UTcorps
Smilies · https://ut99.org/viewtopic.php?f=8&t=13758medor wrote:Replace Skaarj with EvilGrins
-
- Godlike
- Posts: 2956
- Joined: Fri Sep 25, 2015 9:01 pm
- Location: moved without proper hashing
Re: Mesh with "Exit", "Home" or similar
Thanks for answers, I found a matching one in package Industrial_Pack1.u, even a destroyable one:
You do not have the required permissions to view the files attached to this post.
"If Origin not in center it be not in center." --Buggie
-
- Godlike
- Posts: 2975
- Joined: Wed Feb 01, 2012 11:26 am
- Personal rank: GEx the Gecko
- Location: Kaunas, Lithuania
Re: Mesh with "Exit", "Home" or similar
Lmao someone else was looking for who made that package today. Found out its by "Islington" in TO-Gallery map.
My work for UT99: (NEW!) Mute, Counter-Strike VP, MaleOne+, FemaleOne+ and the FemaleTwo220 voicepacks DM-XC-NaliTreeV2 (from the 2012 Xmas Contest mappack), DM/DOM-20AC-CastleGeorgeV3 (from the 20th Anniversary Contest mappack), DM-UFFO, DM-WreckingBall, CTFM-Sundial
my small spec of files at Google Drive
List of console converted maps, models & more!
-
- Godlike
- Posts: 2956
- Joined: Fri Sep 25, 2015 9:01 pm
- Location: moved without proper hashing
Re: Mesh with "Exit", "Home" or similar
Sadly class'Industrial_Pack1.WSExitSign' does not work correct if its DrawScale is changed.
Here a fixed one:
Code: Select all
class SBExitSign expands WSExitSign;
auto state active {
function TakeDamage( int NDamage, Pawn instigatedBy, Vector hitlocation, Vector momentum, name damageType) {
local WSExitSignB BrokenSign;
BrokenSign = Spawn(class'WSExitSignB');
if (BrokenSign != None)
{
BrokenSign.DrawScale = self.DrawScale;
BrokenSign.SetCollisionSize(CollisionRadius, CollisionHeight);
}
skinnedFrag(class'WSFragment2', texture'WSExitSignTex', Momentum, self.DrawScale, 7);
MakeNoise(1.0);
}
}
"If Origin not in center it be not in center." --Buggie