mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
Format RenderApi code
This commit is contained in:
@@ -8,29 +8,29 @@ using Microsoft.Iris.Render.Animation;
|
||||
|
||||
namespace Microsoft.Iris.Render
|
||||
{
|
||||
public sealed class ContinuousAnimationInput : ObjectAnimationInput
|
||||
{
|
||||
public ContinuousAnimationInput(IAnimatable sourceObject, string sourcePropertyName)
|
||||
: this(sourceObject, sourcePropertyName, (string) null)
|
||||
public sealed class ContinuousAnimationInput : ObjectAnimationInput
|
||||
{
|
||||
}
|
||||
public ContinuousAnimationInput(IAnimatable sourceObject, string sourcePropertyName)
|
||||
: this(sourceObject, sourcePropertyName, (string)null)
|
||||
{
|
||||
}
|
||||
|
||||
public ContinuousAnimationInput(
|
||||
IAnimatable sourceObject,
|
||||
string sourcePropertyName,
|
||||
string sourceMaskSpec)
|
||||
: base(sourceObject, sourcePropertyName, sourceMaskSpec)
|
||||
{
|
||||
}
|
||||
public ContinuousAnimationInput(
|
||||
IAnimatable sourceObject,
|
||||
string sourcePropertyName,
|
||||
string sourceMaskSpec)
|
||||
: base(sourceObject, sourcePropertyName, sourceMaskSpec)
|
||||
{
|
||||
}
|
||||
|
||||
public ContinuousAnimationInput(IAnimation sourceAnimation)
|
||||
: this(sourceAnimation, (string) null)
|
||||
{
|
||||
}
|
||||
public ContinuousAnimationInput(IAnimation sourceAnimation)
|
||||
: this(sourceAnimation, (string)null)
|
||||
{
|
||||
}
|
||||
|
||||
public ContinuousAnimationInput(IAnimation sourceAnimation, string sourceMaskSpec)
|
||||
: base(sourceAnimation, sourceMaskSpec)
|
||||
{
|
||||
public ContinuousAnimationInput(IAnimation sourceAnimation, string sourceMaskSpec)
|
||||
: base(sourceAnimation, sourceMaskSpec)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user