You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Merge pull request #83001 from Repiteo/c#-compat-inheritdoc-fix
C#: Fix unresolved `inheritdoc` links in `Compat.cs`
This commit is contained in:
@@ -28,7 +28,7 @@ partial class AnimationNode
|
|||||||
|
|
||||||
partial class AnimationPlayer
|
partial class AnimationPlayer
|
||||||
{
|
{
|
||||||
/// <inheritdoc cref="CallbackModeMethod"/>
|
/// <inheritdoc cref="AnimationMixer.CallbackModeMethod"/>
|
||||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||||
public AnimationMethodCallMode MethodCallMode
|
public AnimationMethodCallMode MethodCallMode
|
||||||
{
|
{
|
||||||
@@ -36,7 +36,7 @@ partial class AnimationPlayer
|
|||||||
set => CallbackModeMethod = (AnimationCallbackModeMethod)value;
|
set => CallbackModeMethod = (AnimationCallbackModeMethod)value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc cref="Active"/>
|
/// <inheritdoc cref="AnimationMixer.Active"/>
|
||||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||||
public bool PlaybackActive
|
public bool PlaybackActive
|
||||||
{
|
{
|
||||||
@@ -44,7 +44,7 @@ partial class AnimationPlayer
|
|||||||
set => Active = value;
|
set => Active = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc cref="CallbackModeProcess"/>
|
/// <inheritdoc cref="AnimationMixer.CallbackModeProcess"/>
|
||||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||||
public AnimationProcessCallback PlaybackProcessMode
|
public AnimationProcessCallback PlaybackProcessMode
|
||||||
{
|
{
|
||||||
@@ -55,7 +55,7 @@ partial class AnimationPlayer
|
|||||||
|
|
||||||
partial class AnimationTree
|
partial class AnimationTree
|
||||||
{
|
{
|
||||||
/// <inheritdoc cref="CallbackModeProcess"/>
|
/// <inheritdoc cref="AnimationMixer.CallbackModeProcess"/>
|
||||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||||
public AnimationProcessCallback ProcessCallback
|
public AnimationProcessCallback ProcessCallback
|
||||||
{
|
{
|
||||||
@@ -120,7 +120,7 @@ partial class GraphEdit
|
|||||||
|
|
||||||
partial class GraphNode
|
partial class GraphNode
|
||||||
{
|
{
|
||||||
/// <inheritdoc cref="DeleteRequest"/>
|
/// <inheritdoc cref="GraphElement.DeleteRequest"/>
|
||||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||||
public event Action CloseRequest
|
public event Action CloseRequest
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user