mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
Fix the bogus rotation flag when exporting the torch.
This commit is contained in:
parent
4e435654c0
commit
965680f5dd
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ def calc_average_area(mdl):
|
|||
def get_properties(operator, mdl, obj):
|
||||
mdl.eyeposition = tuple (obj.qfmdl.eyeposition)
|
||||
mdl.synctype = MDL.SYNCTYPE[obj.qfmdl.synctype]
|
||||
mdl.flags = ((obj.qfmdl.synctype and MDL.EF_ROTATE or 0)
|
||||
mdl.flags = ((obj.qfmdl.rotate and MDL.EF_ROTATE or 0)
|
||||
| MDL.EFFECTS[obj.qfmdl.effects])
|
||||
script = obj.qfmdl.script
|
||||
mdl.script = None
|
||||
|
|
Loading…
Reference in a new issue