SPARK
SPARK copied to clipboard
SPARK Particle Engine, a portable lightweight C++ library for particle effects
Fixes a few errors like the ones below. On clang: ``` In file included from spark/src/Core/SPK_Factory.cpp:21: In file included from spark/include/SPARK.h:33: spark/include/Extensions/Interpolators/SPK_GraphInterpolator.h:599:3: error: explicit qualification required to use member 'interpolateParam'...
On some editors ISO-8859 encoded files can't be edited. This patches them to regular ASCII encoding.
License
Hi. Would you consider adding a license for this repo?
pull request
the error is the same as : "build spark engine failed #1 by qiaoqi was closed on 11 Jun 2018" please help me, thanks a lot!
Library is making an assumtions that sizeof(size_t) == sizeof(unsigned int) (i.e. SPK_Group::373) which isn't true on x64 (sizeof(size_t) == 8) Fixed by adding `TYPE_SIZE_T,` into SPK_Types::61 and ` spk_basetype( size_t,...
```cpp void SpawnParticlesAction::setNb(unsigned int min,unsigned int max) { if (min minNb = minNb; this->maxNb = maxNb; } else { SPK_LOG_WARNING("SpawnParticlesAction::setNb(unsigned int,unsigned int) - min is higher than max - Values...
Need update rain demo
Hi, As the definition of setZone suggests: ``` /** * @brief Sets the Zone of this Modifier * * If the Zone is NULL, the Zone is considered to be...