mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
21a588b6a4
* Add OnCollisionHook and OnCollision2DHook * refactor hooks Naming shouldn't be trigger, get outa heeeeere! * Implement ValueEquals + simplify already implemented ValueEquals * Fix generator for Collisions + Add missing generated conditions + support OR:ed conditions in templates Co-authored-by: Adam Ramberg <adam@mambojambostudios.com>
8 lines
257 B
C#
8 lines
257 B
C#
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Condition of type `double`. Inherits from `AtomCondition<double>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-teal")]
|
|
public abstract class DoubleCondition : AtomCondition<double> { }
|
|
} |