mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-21 11:09:41 +00:00
Fix particles being too small. Looks like this should actually be size*2.
This commit is contained in:
parent
12de351feb
commit
29acc3f722
1 changed files with 1 additions and 1 deletions
|
@ -854,7 +854,7 @@ class NIFObjectLoader
|
||||||
{
|
{
|
||||||
const Nif::NiParticleSystemController *partctrl = static_cast<const Nif::NiParticleSystemController*>(ctrl.getPtr());
|
const Nif::NiParticleSystemController *partctrl = static_cast<const Nif::NiParticleSystemController*>(ctrl.getPtr());
|
||||||
|
|
||||||
partsys->setDefaultDimensions(partctrl->size, partctrl->size);
|
partsys->setDefaultDimensions(partctrl->size*2, partctrl->size*2);
|
||||||
|
|
||||||
if(!partctrl->emitter.empty())
|
if(!partctrl->emitter.empty())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue