Always snap to grid

UPKG File

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search

A .UPKG file is a simple text file that the UnrealScript compiler will look for to know what initial PackageFlags to use for the compiling package, the file must be placed within the Classes folder.

The content of a .UPKG looks like

[Flags]
AllowDownload=False
ClientOptional=False
ServerSideOnly=True

this would flag the package as don't send the package to any clients that request it from the server and flag the package as ServerSideOnly which means only the server may load this package.

The default flag values are

[Flags]
AllowDownload=True
ClientOptional=False
ServerSideOnly=False