Difference between revisions of "Common Mistakes"
Jump to navigation
Jump to search
→Don't Do These Things: Don't change the ownership
imported>Dev akm |
imported>Haama (→Don't Do These Things: Don't change the ownership) |
||
Line 106: | Line 106: | ||
* Don't use underscores in primary resource filenames. Underscores are reserved by the game for finding various file types, such as normal maps (xxx_n.dds), glow maps (xxx_g.dds), etc. | * Don't use underscores in primary resource filenames. Underscores are reserved by the game for finding various file types, such as normal maps (xxx_n.dds), glow maps (xxx_g.dds), etc. | ||
* Don't use full paths when creating retextured items. Texture paths need to be relative to the Data folder, not higher (not C:\Program Files\...) | * Don't use full paths when creating retextured items. Texture paths need to be relative to the Data folder, not higher (not C:\Program Files\...) | ||
* Don't change the ownership of an item in the CS. If you need to change the ownership of an item, make it persistent, and change it via script. This prevents a [[Common_Bugs#Remove_Item|bug where items aren't removed properly.]] Ignore this if you're changing a lot of item's ownership - the probable loss of FPS caused by 1000s of persistent items is not worth it. | |||
== Tips == | == Tips == |