If you want to help us maintaining this wiki, check out our discord server: https://discord.gg/3u69jMa 

*Note

From SWRC Wiki
Revision as of 10:39, 14 May 2021 by Plasma (talk | contribs) (Created page with "<source lang="c++"> //============================================================================= // A sticky note. Level designers can place these in the level and then //...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
//=============================================================================
// A sticky note.  Level designers can place these in the level and then
// view them as a batch in the error/warnings window.
//=============================================================================
class Note extends Actor
	placeable
	native;

#exec Texture Import File=Textures\Note.pcx  Name=S_Note Mips=Off MASKED=1

var() string Text;


defaultproperties
{
     bStatic=True
     bHidden=True
     bNoDelete=True
     bMovable=False
     Texture=Texture'Engine.S_Note'
}