Finalize ParticleSystem, add angular velocity, multiple emitters, GetBool for IDataReader, use Lerp in LerpColor.

This commit is contained in:
2024-10-17 00:50:49 +02:00
parent 7c7c61fd56
commit 775b973eb2
7 changed files with 139 additions and 109 deletions

View File

@@ -30,6 +30,13 @@ namespace Voile.Resources.DataReaders
/// </summary>
public interface IStreamKeyValueGetter
{
/// <summary>
/// Get a boolean from this data getter.
/// </summary>
/// <param name="key">Key of the value.</param>
/// <param name="defaultValue">Default value in case this getter fails to get data.</param>
/// <returns></returns>
bool GetBool(string key, bool defaultValue = false);
/// <summary>
/// Get an int from this data getter.
/// </summary>