EaseCustom.xml 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <Type Name="EaseCustom" FullName="Urho.Actions.EaseCustom">
  2. <TypeSignature Language="C#" Value="public class EaseCustom : Urho.Actions.ActionEase" />
  3. <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit EaseCustom extends Urho.Actions.ActionEase" />
  4. <AssemblyInfo>
  5. <AssemblyName>Urho</AssemblyName>
  6. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  7. </AssemblyInfo>
  8. <Base>
  9. <BaseTypeName>Urho.Actions.ActionEase</BaseTypeName>
  10. </Base>
  11. <Interfaces />
  12. <Docs>
  13. <summary>Custom easing function using a function that provides the easing values.</summary>
  14. <remarks>This is an easing action that can use a delegate to compute the easing behavior.</remarks>
  15. </Docs>
  16. <Members>
  17. <Member MemberName=".ctor">
  18. <MemberSignature Language="C#" Value="public EaseCustom (Urho.Actions.FiniteTimeAction action, Func&lt;float,float&gt; easeFunc);" />
  19. <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Urho.Actions.FiniteTimeAction action, class System.Func`2&lt;float32, float32&gt; easeFunc) cil managed" />
  20. <MemberType>Constructor</MemberType>
  21. <AssemblyInfo>
  22. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  23. </AssemblyInfo>
  24. <Parameters>
  25. <Parameter Name="action" Type="Urho.Actions.FiniteTimeAction" />
  26. <Parameter Name="easeFunc" Type="System.Func&lt;System.Single,System.Single&gt;" />
  27. </Parameters>
  28. <Docs>
  29. <param name="action">The easing action that this is wrapping.</param>
  30. <param name="easeFunc">Function that takes as input the time, and returns the transformed time that should be passed to the underlying wrapped action.</param>
  31. <summary>Initializes the custom easing function with a function that will apply a distortion over time.</summary>
  32. <remarks>To be added.</remarks>
  33. </Docs>
  34. </Member>
  35. <Member MemberName="EaseFunc">
  36. <MemberSignature Language="C#" Value="public Func&lt;float,float&gt; EaseFunc { get; }" />
  37. <MemberSignature Language="ILAsm" Value=".property instance class System.Func`2&lt;float32, float32&gt; EaseFunc" />
  38. <MemberType>Property</MemberType>
  39. <AssemblyInfo>
  40. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  41. </AssemblyInfo>
  42. <ReturnValue>
  43. <ReturnType>System.Func&lt;System.Single,System.Single&gt;</ReturnType>
  44. </ReturnValue>
  45. <Docs>
  46. <summary>The configured easing function.</summary>
  47. <value>To be added.</value>
  48. <remarks>To be added.</remarks>
  49. </Docs>
  50. </Member>
  51. <Member MemberName="Reverse">
  52. <MemberSignature Language="C#" Value="public override Urho.Actions.FiniteTimeAction Reverse ();" />
  53. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class Urho.Actions.FiniteTimeAction Reverse() cil managed" />
  54. <MemberType>Method</MemberType>
  55. <AssemblyInfo>
  56. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  57. </AssemblyInfo>
  58. <ReturnValue>
  59. <ReturnType>Urho.Actions.FiniteTimeAction</ReturnType>
  60. </ReturnValue>
  61. <Parameters />
  62. <Docs>
  63. <summary>Returns an <see cref="T:Urho.Actions.ReverseTime" /> instance of this action.</summary>
  64. <returns>To be added.</returns>
  65. <remarks>To be added.</remarks>
  66. </Docs>
  67. </Member>
  68. <Member MemberName="StartAction">
  69. <MemberSignature Language="C#" Value="protected override Urho.Actions.ActionState StartAction (Urho.Node target);" />
  70. <MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig virtual instance class Urho.Actions.ActionState StartAction(class Urho.Node target) cil managed" />
  71. <MemberType>Method</MemberType>
  72. <AssemblyInfo>
  73. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  74. </AssemblyInfo>
  75. <ReturnValue>
  76. <ReturnType>Urho.Actions.ActionState</ReturnType>
  77. </ReturnValue>
  78. <Parameters>
  79. <Parameter Name="target" Type="Urho.Node" />
  80. </Parameters>
  81. <Docs>
  82. <param name="target">
  83. <para>The new <see cref="T:Urho.Actions.ActionState" /> that encapsulates the state and provides the implementation to perform your action.</para>
  84. </param>
  85. <summary>Creates the action state for this action, called on demand from the framework to start executing the recipe.</summary>
  86. <returns>To be added.</returns>
  87. <remarks>New action that will perform the inverse of this action</remarks>
  88. </Docs>
  89. </Member>
  90. </Members>
  91. </Type>