Mesh with "Exit", "Home" or similar

Do you search a certain mutator, mod, skin, map, everything else?
User avatar
Barbie
Godlike
Posts: 2956
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Mesh with "Exit", "Home" or similar

Post by Barbie »

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
User avatar
sektor2111
Godlike
Posts: 6443
Joined: Sun May 09, 2010 6:15 pm
Location: On the roof.

Re: Mesh with "Exit", "Home" or similar

Post by sektor2111 »

Do you want to inject a decoration with that Text in Run-Time ?
Buggie
Godlike
Posts: 3230
Joined: Sat Mar 21, 2020 5:32 am

Re: Mesh with "Exit", "Home" or similar

Post by Buggie »

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.
User avatar
EvilGrins
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

Post by EvilGrins »

You mean like a sign?
User avatar
Barbie
Godlike
Posts: 2956
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Mesh with "Exit", "Home" or similar

Post by Barbie »

Thanks for answers, I found a matching one in package Industrial_Pack1.u, even a destroyable one:
Industrial_Pack1.WSExitSign.jpg
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
User avatar
UnrealGGecko
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

Post by UnrealGGecko »

Barbie wrote: Wed Jan 12, 2022 12:15 am Thanks for answers, I found a matching one in package Industrial_Pack1.u, even a destroyable one:
Industrial_Pack1.WSExitSign.jpg
Lmao someone else was looking for who made that package today. Found out its by "Islington" in TO-Gallery map. :lol2:
User avatar
Barbie
Godlike
Posts: 2956
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Mesh with "Exit", "Home" or similar

Post by Barbie »

Barbie wrote: Wed Jan 12, 2022 12:15 am I found a matching one in package Industrial_Pack1.u, even a destroyable one.
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