Merge pull request #83001 from Repiteo/c#-compat-inheritdoc-fix

C#: Fix unresolved `inheritdoc` links in `Compat.cs`
This commit is contained in:
Rémi Verschelde 2023-10-09 15:36:20 +02:00
commit d7ffb45cf4
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -28,7 +28,7 @@ partial class AnimationNode
partial class AnimationPlayer
{
/// <inheritdoc cref="CallbackModeMethod"/>
/// <inheritdoc cref="AnimationMixer.CallbackModeMethod"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public AnimationMethodCallMode MethodCallMode
{
@ -36,7 +36,7 @@ partial class AnimationPlayer
set => CallbackModeMethod = (AnimationCallbackModeMethod)value;
}
/// <inheritdoc cref="Active"/>
/// <inheritdoc cref="AnimationMixer.Active"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public bool PlaybackActive
{
@ -44,7 +44,7 @@ partial class AnimationPlayer
set => Active = value;
}
/// <inheritdoc cref="CallbackModeProcess"/>
/// <inheritdoc cref="AnimationMixer.CallbackModeProcess"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public AnimationProcessCallback PlaybackProcessMode
{
@ -55,7 +55,7 @@ partial class AnimationPlayer
partial class AnimationTree
{
/// <inheritdoc cref="CallbackModeProcess"/>
/// <inheritdoc cref="AnimationMixer.CallbackModeProcess"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public AnimationProcessCallback ProcessCallback
{
@ -120,7 +120,7 @@ partial class GraphEdit
partial class GraphNode
{
/// <inheritdoc cref="DeleteRequest"/>
/// <inheritdoc cref="GraphElement.DeleteRequest"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public event Action CloseRequest
{