2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 01:47:43 +00:00

Add ScriptWater loader imp

This commit is contained in:
2016-04-19 22:44:08 -07:00
parent 8537ea5d8d
commit beb1946e47
11 changed files with 271 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
#include "CFluidUVMotion.hpp"
namespace urde
{
CFluidUVMotion::CFluidUVMotion(float a, float b, const urde::CFluidUVMotion::SFluidLayerMotion& c, const urde::CFluidUVMotion::SFluidLayerMotion& d, const urde::CFluidUVMotion::SFluidLayerMotion& e)
{
x4c_ = 1.f / a;
x50_ = b;
x0_fluidLayers.resize(3);
x0_fluidLayers[0] = c;
x0_fluidLayers[1] = d;
x0_fluidLayers[2] = e;
}
}