DPSF 2.5.0
dotnet add package DPSF --version 2.5.0
NuGet\Install-Package DPSF -Version 2.5.0
<PackageReference Include="DPSF" Version="2.5.0" />
paket add DPSF --version 2.5.0
#r "nuget: DPSF, 2.5.0"
// Install DPSF as a Cake Addin #addin nuget:?package=DPSF&version=2.5.0 // Install DPSF as a Cake Tool #tool nuget:?package=DPSF&version=2.5.0
Dynamic Particle System Framework for XNA.
Supports Windows, Xbox 360, Windows Phone, and MonoGame (Windows RT and Mono For Android).
NuGet does not always install the proper DLL reference for each project type, so you may need to remove the reference it adds and manually add the correct one.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. net40-client is compatible. net40-cf is compatible. |
Windows Phone | wp was computed. wp7 is compatible. wp75 was computed. wp8 was computed. wp81 was computed. |
Windows Store | win8 is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Fixed Android bug where IndexOutOfRangeException would be thrown on some Android devices, depending on their hardware capabilities.
- Added SetEnabledStateForAllParticleSystems(), SetVisibleStateForAllParticleSystems(), and SetEnabledAndVisibleStatesForAllParticleSystems() functions to the ParticleSystemManager class.
- Added 2 more helper functions for updating particle transparency, UpdateParticleTransparencyWithQuickFadeIn and UpdateParticleTransparencyWithQuickFadeOut.
- Added new DisabledWithEarlyRecycling memory management mode to allow recycling the oldest active particle when we want to add a new particle, but have no more memory available for it.
- Added new DPSFDebugWarningExceptions that are only thrown when debugging and are meant to help users catch when they do not have DPSF setup ideally.
- Changed the provided Default Particle System classes to be 'abstract', as they are meant to be inherited and not instanced directly.
- Added more functionality to the MouseManager to easily detect when a mouse button is or was just pressed/released.
- Created iOS friendly DPSF assemblies, but still not fully tested due to lack of Mac hardware required for testing.
- Fixed performance bug in ParticleEmitterCollection, as it was generating garbage for the Garbage Collector every time the Emitters and IDs properties were accessed.