Once I get that upgrade to 36-hour days, I will tackle that. – Mychaeel

Compiler issues

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 21:49, 6 May 2010 by Eliot (Talk | contribs) (New page that explains parsing issues such as defaultproperties{ and comments)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Like any other compiler there are issues with the parsing therefor this page exists to mention those common issues and how to get around them.

Parsing Issues

Comment Issues related to the comments


DefaultProperties Issues related to the defaultproperties block

Placing a { on the same line of the defaultproperties declaration will cause the parser to skip the defaultproperties block thus :all of your default values will not be compiled, to get around this is easy just place the { on the next line!.

Example

Wrong

Correct

defaultproperties{
}
defaultproperties
{
}