升级水插件

This commit is contained in:
2026-01-08 22:30:55 +08:00
parent febff82d24
commit ca68084264
415 changed files with 18138 additions and 7134 deletions

View File

@@ -1,4 +1,4 @@
// Crest Water System
// Crest Water System
// Copyright © 2024 Wave Harmonic. All rights reserved.
// NOTE: DWP2 depends on this file. Any API changes need to be communicated to the DWP2 authors in advance.
@@ -13,23 +13,18 @@ namespace WaveHarmonic.Crest
/// <summary>
/// A layer/event where queries are executed.
/// </summary>
[@GenerateDoc]
public enum CollisionLayer
{
/// <summary>
/// Include all displacement.
/// </summary>
/// <inheritdoc cref="Generated.CollisionLayer.Everything"/>
[Tooltip("Include all displacement.")]
Everything,
/// <summary>
/// Only include Animated Waves.
/// </summary>
/// <inheritdoc cref="Generated.CollisionLayer.AfterAnimatedWaves"/>
[Tooltip("Only include Animated Waves.")]
AfterAnimatedWaves,
/// <summary>
/// Include Animated Waves and Dynamic Waves.
/// </summary>
/// <inheritdoc cref="Generated.CollisionLayer.AfterDynamicWaves"/>
[Tooltip("Include Animated Waves and Dynamic Waves.")]
AfterDynamicWaves,
}