mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 01:06:02 +08:00
Added DOMixedMoveBy and DOLocalMixedMoveBy shortcuts
This commit is contained in:
parent
cbb2283bdf
commit
2d562c4829
@ -1021,6 +1021,22 @@
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOMixedMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Transform's position BY the given value (as if it was set to relative),
|
||||
in a way that allows other DOMixedMoveBy tweens to work together on the same target,
|
||||
instead than fight each other as multiple DOMove would do.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="byValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOLocalMixedMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Transform's localPosition BY the given value (as if it was set to relative),
|
||||
in a way that allows other DOMixedMoveBy tweens to work together on the same target,
|
||||
instead than fight each other as multiple DOMove would do.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="byValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DORotate(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
|
||||
<summary>Tweens a Transform's rotation to the given value.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
30
UnityExamples.Unity5/Assets/Basics.cs
Normal file
30
UnityExamples.Unity5/Assets/Basics.cs
Normal file
@ -0,0 +1,30 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
using DG.Tweening;
|
||||
|
||||
public class Basics : MonoBehaviour
|
||||
{
|
||||
public Transform redCube, greenCube, blueCube, purpleCube;
|
||||
|
||||
IEnumerator Start()
|
||||
{
|
||||
// Start after one second delay (to ignore Unity hiccups when activating Play mode in Editor)
|
||||
yield return new WaitForSeconds(1);
|
||||
|
||||
// Let's move the red cube TO 0,4,0 in 2 seconds
|
||||
redCube.DOMove(new Vector3(0,4,0), 2);
|
||||
|
||||
// Let's move the green cube FROM 0,4,0 in 2 seconds
|
||||
greenCube.DOMove(new Vector3(0,4,0), 2).From();
|
||||
|
||||
// Let's move the blue cube BY 0,4,0 in 2 seconds
|
||||
blueCube.DOMove(new Vector3(0,4,0), 2).SetRelative();
|
||||
|
||||
// Let's move the purple cube BY 6,0,0 in 2 seconds
|
||||
// and also change its color to yellow.
|
||||
// To change its color, we'll have to use its material as a target (instead than its transform).
|
||||
purpleCube.DOMove(new Vector3(6,0,0), 2).SetRelative();
|
||||
// Also, let's set the color tween to loop infinitely forward and backwards
|
||||
purpleCube.GetComponent<Renderer>().material.DOColor(Color.yellow, 2).SetLoops(-1, LoopType.Yoyo);
|
||||
}
|
||||
}
|
||||
12
UnityExamples.Unity5/Assets/Basics.cs.meta
Normal file
12
UnityExamples.Unity5/Assets/Basics.cs.meta
Normal file
@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bfea0ed3e7e7e904b8617d8852314b51
|
||||
timeCreated: 1427037180
|
||||
licenseType: Pro
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Basics.unity
Normal file
BIN
UnityExamples.Unity5/Assets/Basics.unity
Normal file
Binary file not shown.
8
UnityExamples.Unity5/Assets/Basics.unity.meta
Normal file
8
UnityExamples.Unity5/Assets/Basics.unity.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 95e8d78a19450e94ebcf85d3708dbdfd
|
||||
timeCreated: 1427037118
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
UnityExamples.Unity5/Assets/Demigiant.meta
Normal file
9
UnityExamples.Unity5/Assets/Demigiant.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3253954388db2d34ca8ff93ad48ea6a9
|
||||
folderAsset: yes
|
||||
timeCreated: 1427036860
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
UnityExamples.Unity5/Assets/Demigiant/DOTween.meta
Normal file
9
UnityExamples.Unity5/Assets/Demigiant/DOTween.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3798304922268ba46922935704956287
|
||||
folderAsset: yes
|
||||
timeCreated: 1427036860
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
1906
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween.XML
Normal file
1906
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween.XML
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cf3dd5efc3432364095957779d7b010e
|
||||
timeCreated: 1427036864
|
||||
licenseType: Pro
|
||||
TextScriptImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween.dll
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween.dll
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween.dll.mdb
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween.dll.mdb
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a822f180e0d1cbd458073187a6ba2f32
|
||||
timeCreated: 1427036860
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,20 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 74e3be7c163d29b4eb13e42e3b093ebc
|
||||
timeCreated: 1427036864
|
||||
licenseType: Pro
|
||||
PluginImporter:
|
||||
serializedVersion: 1
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
isPreloaded: 0
|
||||
platformData:
|
||||
Any:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
Editor:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween43.dll
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween43.dll
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween43.dll.mdb
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween43.dll.mdb
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: daa90d7807e5d524ea1efa4d20b2de6f
|
||||
timeCreated: 1427036874
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,20 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 96124212a8a434c4baaaff8cf6006657
|
||||
timeCreated: 1427036875
|
||||
licenseType: Pro
|
||||
PluginImporter:
|
||||
serializedVersion: 1
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
isPreloaded: 0
|
||||
platformData:
|
||||
Any:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
Editor:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
47
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween43.xml
Normal file
47
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween43.xml
Normal file
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>DOTween43</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DG.Tweening.ShortcutExtensions">
|
||||
<summary>
|
||||
Methods that extend known Unity objects and allow to directly create and control tweens from their instances.
|
||||
These, as all DOTween43 methods, require Unity 4.3 or later.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.SpriteRenderer,UnityEngine.Color,System.Single)">
|
||||
<summary>Tweens a SpriteRenderer's color to the given value.
|
||||
Also stores the spriteRenderer as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.SpriteRenderer,System.Single,System.Single)">
|
||||
<summary>Tweens a Material's alpha color to the given value.
|
||||
Also stores the spriteRenderer as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOMove(UnityEngine.Rigidbody2D,UnityEngine.Vector2,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Rigidbody2D's position to the given value.
|
||||
Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOMoveX(UnityEngine.Rigidbody2D,System.Single,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Rigidbody2D's X position to the given value.
|
||||
Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOMoveY(UnityEngine.Rigidbody2D,System.Single,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Rigidbody2D's Y position to the given value.
|
||||
Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DORotate(UnityEngine.Rigidbody2D,System.Single,System.Single)">
|
||||
<summary>Tweens a Rigidbody2D's rotation to the given value.
|
||||
Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bee01d69fe6a7fe40b5abe7cf7256796
|
||||
timeCreated: 1427036876
|
||||
licenseType: Pro
|
||||
TextScriptImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween46.dll
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween46.dll
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween46.dll.mdb
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween46.dll.mdb
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0cefc8c9f88432a4691eda55a1455277
|
||||
timeCreated: 1427036874
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,20 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e533a471b73bc124e9b533b673c8fcde
|
||||
timeCreated: 1427036876
|
||||
licenseType: Pro
|
||||
PluginImporter:
|
||||
serializedVersion: 1
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
isPreloaded: 0
|
||||
platformData:
|
||||
Any:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
Editor:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
120
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween46.xml
Normal file
120
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween46.xml
Normal file
@ -0,0 +1,120 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>DOTween46</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DG.Tweening.ShortcutExtensions">
|
||||
<summary>
|
||||
Methods that extend known Unity objects and allow to directly create and control tweens from their instances.
|
||||
These, as all DOTween46 methods, require Unity 4.6 or later.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.CanvasGroup,System.Single,System.Single)">
|
||||
<summary>Tweens a CanvasGroup's alpha color to the given value.
|
||||
Also stores the canvasGroup as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.UI.Graphic,UnityEngine.Color,System.Single)">
|
||||
<summary>Tweens an Graphic's color to the given value.
|
||||
Also stores the image as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.UI.Graphic,System.Single,System.Single)">
|
||||
<summary>Tweens an Graphic's alpha color to the given value.
|
||||
Also stores the image as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.UI.Image,UnityEngine.Color,System.Single)">
|
||||
<summary>Tweens an Image's color to the given value.
|
||||
Also stores the image as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.UI.Image,System.Single,System.Single)">
|
||||
<summary>Tweens an Image's alpha color to the given value.
|
||||
Also stores the image as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFillAmount(UnityEngine.UI.Image,System.Single,System.Single)">
|
||||
<summary>Tweens an Image's fillAmount to the given value.
|
||||
Also stores the image as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach (0 to 1)</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFlexibleSize(UnityEngine.UI.LayoutElement,UnityEngine.Vector2,System.Single,System.Boolean)">
|
||||
<summary>Tweens an LayoutElement's flexibleWidth/Height to the given value.
|
||||
Also stores the LayoutElement as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOMinSize(UnityEngine.UI.LayoutElement,UnityEngine.Vector2,System.Single,System.Boolean)">
|
||||
<summary>Tweens an LayoutElement's minWidth/Height to the given value.
|
||||
Also stores the LayoutElement as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOPreferredSize(UnityEngine.UI.LayoutElement,UnityEngine.Vector2,System.Single,System.Boolean)">
|
||||
<summary>Tweens an LayoutElement's preferredWidth/Height to the given value.
|
||||
Also stores the LayoutElement as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.UI.Outline,UnityEngine.Color,System.Single)">
|
||||
<summary>Tweens a Outline's effectColor to the given value.
|
||||
Also stores the Outline as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.UI.Outline,System.Single,System.Single)">
|
||||
<summary>Tweens a Outline's effectColor alpha to the given value.
|
||||
Also stores the Outline as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOScale(UnityEngine.UI.Outline,UnityEngine.Vector2,System.Single)">
|
||||
<summary>Tweens a Outline's effectDistance to the given value.
|
||||
Also stores the Outline as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOAnchorPos(UnityEngine.RectTransform,UnityEngine.Vector2,System.Single,System.Boolean)">
|
||||
<summary>Tweens a RectTransform's anchoredPosition to the given value.
|
||||
Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOAnchorPos3D(UnityEngine.RectTransform,UnityEngine.Vector3,System.Single,System.Boolean)">
|
||||
<summary>Tweens a RectTransform's anchoredPosition3D to the given value.
|
||||
Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOSizeDelta(UnityEngine.RectTransform,UnityEngine.Vector2,System.Single,System.Boolean)">
|
||||
<summary>Tweens a RectTransform's sizeDelta to the given value.
|
||||
Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOValue(UnityEngine.UI.Slider,System.Single,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Slider's value to the given value.
|
||||
Also stores the Slider as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.UI.Text,UnityEngine.Color,System.Single)">
|
||||
<summary>Tweens a Text's color to the given value.
|
||||
Also stores the Text as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.UI.Text,System.Single,System.Single)">
|
||||
<summary>Tweens a Text's alpha color to the given value.
|
||||
Also stores the Text as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOText(UnityEngine.UI.Text,System.String,System.Single,System.Boolean,System.String)">
|
||||
<summary>Tweens a Text's text to the given value.
|
||||
Also stores the Text as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="endValue">The end string to tween to</param><param name="duration">The duration of the tween</param>
|
||||
<param name="scramble">If TRUE the string will appear from a random animation of characters</param>
|
||||
<param name="scrambleChars">A string containing the characters to use for scrambling.
|
||||
Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters.
|
||||
Leave it to NULL (default) to use default ones</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 11b4db111ab0d92449c73aa232309358
|
||||
timeCreated: 1427036876
|
||||
licenseType: Pro
|
||||
TextScriptImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween50.dll
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween50.dll
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween50.dll.mdb
Normal file
BIN
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween50.dll.mdb
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 305308bb99989414fa15ec8e339b70b0
|
||||
timeCreated: 1427036874
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,20 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 244f321fc1b65154cb9485465856c92f
|
||||
timeCreated: 1427036875
|
||||
licenseType: Pro
|
||||
PluginImporter:
|
||||
serializedVersion: 1
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
isPreloaded: 0
|
||||
platformData:
|
||||
Any:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
Editor:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
103
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween50.xml
Normal file
103
UnityExamples.Unity5/Assets/Demigiant/DOTween/DOTween50.xml
Normal file
@ -0,0 +1,103 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>DOTween50</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DG.Tweening.ShortcutExtensions">
|
||||
<summary>
|
||||
Methods that extend known Unity objects and allow to directly create and control tweens from their instances.
|
||||
These, as all DOTween50 methods, require Unity 5.0 or later.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOSetFloat(UnityEngine.Audio.AudioMixer,System.String,System.Single,System.Single)">
|
||||
<summary>Tweens an AudioMixer's exposed float to the given value.
|
||||
Also stores the AudioMixer as the tween's target so it can be used for filtered operations.
|
||||
Note that you need to manually expose a float in an AudioMixerGroup in order to be able to tween it from an AudioMixer.</summary>
|
||||
<param name="floatName">Name given to the exposed float to set</param>
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOComplete(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Completes all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens completed
|
||||
(meaning the tweens that don't have infinite loops and were not already complete)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOKill(UnityEngine.Audio.AudioMixer,System.Boolean)">
|
||||
<summary>
|
||||
Kills all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens killed.
|
||||
</summary>
|
||||
<param name="complete">If TRUE completes the tween before killing it</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOFlip(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens flipped.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOGoto(UnityEngine.Audio.AudioMixer,System.Single,System.Boolean)">
|
||||
<summary>
|
||||
Sends to the given position all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens involved.
|
||||
</summary>
|
||||
<param name="to">Time position to reach
|
||||
(if higher than the whole tween duration the tween will simply reach its end)</param>
|
||||
<param name="andPlay">If TRUE will play the tween after reaching the given position, otherwise it will pause it</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOPause(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Pauses all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens paused.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOPlay(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Plays all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens played.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOPlayBackwards(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Plays backwards all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens played.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOPlayForward(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Plays forward all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens played.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DORestart(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Restarts all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens restarted.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DORewind(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Rewinds all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens rewinded.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOTogglePause(UnityEngine.Audio.AudioMixer)">
|
||||
<summary>
|
||||
Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference
|
||||
(meaning tweens that were started from this target, or that had this target added as an Id)
|
||||
and returns the total number of tweens involved.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 77cae47a46077594587f7b82623ca74c
|
||||
timeCreated: 1427036876
|
||||
licenseType: Pro
|
||||
TextScriptImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3ca6bf15d9b90cd4990be7fb8e6ec9f3
|
||||
folderAsset: yes
|
||||
timeCreated: 1427036860
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,60 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>DOTweenEditor</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DG.DOTweenEditor.DOTweenSetupMenuItem">
|
||||
<summary>
|
||||
Not used as menu item anymore, but as a utiity function
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.DOTweenEditor.DOTweenSetupMenuItem.Setup(System.Boolean)">
|
||||
<summary>
|
||||
Setups DOTween
|
||||
</summary>
|
||||
<param name="partiallySilent">If TRUE, no warning window appears in case there is no need for setup</param>
|
||||
</member>
|
||||
<member name="M:DG.DOTweenEditor.Core.EditorUtils.SetEditorTexture(UnityEngine.Texture2D,UnityEngine.FilterMode,System.Int32)">
|
||||
<summary>
|
||||
Checks that the given editor texture use the correct import settings,
|
||||
and applies them if they're incorrect.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.DOTweenEditor.Core.EditorUtils.DOTweenSetupRequired">
|
||||
<summary>
|
||||
Returns TRUE if addons setup is required.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.DOTweenEditor.Core.EditorUtils.AssetExists(System.String)">
|
||||
<summary>
|
||||
Returns TRUE if the file/directory at the given path exists.
|
||||
</summary>
|
||||
<param name="adbPath">Path, relative to Unity's project folder</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DG.DOTweenEditor.Core.EditorUtils.ADBPathToFullPath(System.String)">
|
||||
<summary>
|
||||
Converts the given project-relative path to a full path,
|
||||
with backward (\) slashes).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.DOTweenEditor.Core.EditorUtils.FullPathToADBPath(System.String)">
|
||||
<summary>
|
||||
Converts the given full path to a path usable with AssetDatabase methods
|
||||
(relative to Unity's project folder, and with the correct Unity forward (/) slashes).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DG.DOTweenEditor.Core.EditorUtils.ConnectToSourceAsset``1(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Connects to a <see cref="T:UnityEngine.ScriptableObject"/> asset.
|
||||
If the asset already exists at the given path, loads it and returns it.
|
||||
Otherwise, either returns NULL or automatically creates it before loading and returning it
|
||||
(depending on the given parameters).
|
||||
</summary>
|
||||
<typeparam name="T">Asset type</typeparam>
|
||||
<param name="adbFilePath">File path (relative to Unity's project folder)</param>
|
||||
<param name="createIfMissing">If TRUE and the requested asset doesn't exist, forces its creation</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 333ef51bd34e0c0438c797c940a9deca
|
||||
timeCreated: 1427036864
|
||||
licenseType: Pro
|
||||
TextScriptImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f929731679d404d4b90d263876b12043
|
||||
timeCreated: 1427036860
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,20 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 38810da415702fd4aab9977b3df97710
|
||||
timeCreated: 1427036861
|
||||
licenseType: Pro
|
||||
PluginImporter:
|
||||
serializedVersion: 1
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
isPreloaded: 0
|
||||
platformData:
|
||||
Any:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
Editor:
|
||||
enabled: 1
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1dfe61e24e680694980c3eee8118d7ec
|
||||
folderAsset: yes
|
||||
timeCreated: 1427036860
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,55 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ed8201294efcdc418e9a28b8a7c718d
|
||||
timeCreated: 1427036864
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 2
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
linearTexture: 0
|
||||
correctGamma: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: .25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 0
|
||||
cubemapConvolution: 0
|
||||
cubemapConvolutionSteps: 8
|
||||
cubemapConvolutionExponent: 1.5
|
||||
seamlessCubemap: 0
|
||||
textureFormat: -1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
rGBM: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: .5, y: .5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaIsTransparency: 0
|
||||
textureType: -1
|
||||
buildTargetSettings: []
|
||||
spriteSheet:
|
||||
sprites: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,55 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bc517d9bee912274899c614a39b2aada
|
||||
timeCreated: 1427036867
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 2
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
linearTexture: 1
|
||||
correctGamma: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: .25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 0
|
||||
cubemapConvolution: 0
|
||||
cubemapConvolutionSteps: 8
|
||||
cubemapConvolutionExponent: 1.5
|
||||
seamlessCubemap: 0
|
||||
textureFormat: -3
|
||||
maxTextureSize: 256
|
||||
textureSettings:
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: -1
|
||||
wrapMode: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
rGBM: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: .5, y: .5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaIsTransparency: 1
|
||||
textureType: 2
|
||||
buildTargetSettings: []
|
||||
spriteSheet:
|
||||
sprites: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,55 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 60fadf5ced9d98e4ba59c9215cc3523a
|
||||
timeCreated: 1427036864
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 2
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
linearTexture: 0
|
||||
correctGamma: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: .25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 0
|
||||
cubemapConvolution: 0
|
||||
cubemapConvolutionSteps: 8
|
||||
cubemapConvolutionExponent: 1.5
|
||||
seamlessCubemap: 0
|
||||
textureFormat: -1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
rGBM: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: .5, y: .5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaIsTransparency: 0
|
||||
textureType: -1
|
||||
buildTargetSettings: []
|
||||
spriteSheet:
|
||||
sprites: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
@ -0,0 +1,55 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ecb47b61c64c5f046ae933668cbe0d03
|
||||
timeCreated: 1427036867
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 2
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
linearTexture: 1
|
||||
correctGamma: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: .25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 0
|
||||
cubemapConvolution: 0
|
||||
cubemapConvolutionSteps: 8
|
||||
cubemapConvolutionExponent: 1.5
|
||||
seamlessCubemap: 0
|
||||
textureFormat: -3
|
||||
maxTextureSize: 512
|
||||
textureSettings:
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: -1
|
||||
wrapMode: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
rGBM: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: .5, y: .5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaIsTransparency: 1
|
||||
textureType: 2
|
||||
buildTargetSettings: []
|
||||
spriteSheet:
|
||||
sprites: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
18
UnityExamples.Unity5/Assets/Demigiant/DOTween/readme.txt
Normal file
18
UnityExamples.Unity5/Assets/Demigiant/DOTween/readme.txt
Normal file
@ -0,0 +1,18 @@
|
||||
DOTween and DOTween Pro are copyright (c) 2014 Daniele Giardini - Demigiant
|
||||
|
||||
// GET STARTED //////////////////////////////////////////////
|
||||
|
||||
- After importing a new DOTween update, select DOTween's Utility Panel from the Tools menu (if it doesn't open automatically) and press the "Setup DOTween..." button to set up additional features based on your Unity version.
|
||||
- In your code, add "using DG.Tweening" to each class where you want to use DOTween.
|
||||
- You're ready to tween. Check out the links below for full documentation and license info.
|
||||
|
||||
|
||||
// LINKS ///////////////////////////////////////////////////////
|
||||
|
||||
DOTween website (documentation, examples, etc): http://dotween.demigiant.com
|
||||
DOTween license: http://dotween.demigiant.com/license.php
|
||||
DOTween repository (Google Code): https://code.google.com/p/dotween/
|
||||
|
||||
// NOTES //////////////////////////////////////////////////////
|
||||
|
||||
- DOTween's Utility Panel can be found under "Tools > DOTween Utility Panel" and also contains other useful options, plus a tab to set DOTween's preferences
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2200fef415aaf7c4fb2c6ed8a09c4986
|
||||
timeCreated: 1427036864
|
||||
licenseType: Pro
|
||||
TextScriptImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
UnityExamples.Unity5/Assets/Example Assets.meta
Normal file
9
UnityExamples.Unity5/Assets/Example Assets.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bd70e8243d25f1a468c3e5fcfe8c659e
|
||||
folderAsset: yes
|
||||
timeCreated: 1427036938
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/CircleOutline.png
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/CircleOutline.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,55 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b9549988911ba764fb4276784faa1259
|
||||
timeCreated: 1427039728
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 2
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
linearTexture: 0
|
||||
correctGamma: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: .25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 0
|
||||
cubemapConvolution: 0
|
||||
cubemapConvolutionSteps: 8
|
||||
cubemapConvolutionExponent: 1.5
|
||||
seamlessCubemap: 0
|
||||
textureFormat: -3
|
||||
maxTextureSize: 128
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: 16
|
||||
mipBias: -1
|
||||
wrapMode: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
rGBM: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: .5, y: .5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaIsTransparency: 1
|
||||
textureType: 8
|
||||
buildTargetSettings: []
|
||||
spriteSheet:
|
||||
sprites: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/DOTweenLogo.png
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/DOTweenLogo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
@ -0,0 +1,55 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b40c611dbe7bfb84f814737f134f45ec
|
||||
timeCreated: 1427040696
|
||||
licenseType: Pro
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 2
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
linearTexture: 0
|
||||
correctGamma: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: .25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 0
|
||||
cubemapConvolution: 0
|
||||
cubemapConvolutionSteps: 8
|
||||
cubemapConvolutionExponent: 1.5
|
||||
seamlessCubemap: 0
|
||||
textureFormat: -3
|
||||
maxTextureSize: 512
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
rGBM: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: .5, y: .5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaIsTransparency: 1
|
||||
textureType: 8
|
||||
buildTargetSettings: []
|
||||
spriteSheet:
|
||||
sprites: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Blue.mat
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Blue.mat
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 285bc07bb73bcee4a9156eb317ca515d
|
||||
timeCreated: 1427037214
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Green.mat
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Green.mat
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c2240a5805567f742b66ec11ae2ff818
|
||||
timeCreated: 1427037225
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Plane.mat
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Plane.mat
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 607083d8fb94e2741b4639e35de3f961
|
||||
timeCreated: 1427037352
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Purple.mat
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Purple.mat
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d40ce6a9d9d9c874393eee703f2d34c8
|
||||
timeCreated: 1427038788
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Red.mat
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Red.mat
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d12bccfd71adadc4e9286bed6c24aee0
|
||||
timeCreated: 1427037290
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Yellow.mat
Normal file
BIN
UnityExamples.Unity5/Assets/Example Assets/MAT Yellow.mat
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f76c9adfc2a910d4cae10cab8579c2d4
|
||||
timeCreated: 1427039569
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
UnityExamples.Unity5/Assets/Example Assets/Prefabs.meta
Normal file
9
UnityExamples.Unity5/Assets/Example Assets/Prefabs.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d58e91a3656ace145900465e44b6cd2e
|
||||
folderAsset: yes
|
||||
timeCreated: 1427036987
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6b281b2a7fc98834db803fb53f43e380
|
||||
timeCreated: 1427037017
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
UnityExamples.Unity5/Assets/Resources.meta
Normal file
9
UnityExamples.Unity5/Assets/Resources.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8f815f034939dad4c8ff0dcf4756296c
|
||||
folderAsset: yes
|
||||
timeCreated: 1427036867
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Resources/DOTweenSettings.asset
Normal file
BIN
UnityExamples.Unity5/Assets/Resources/DOTweenSettings.asset
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 09a8201d23877f94b9cf6f3270d80e82
|
||||
timeCreated: 1427036867
|
||||
licenseType: Pro
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
28
UnityExamples.Unity5/Assets/Sequences.cs
Normal file
28
UnityExamples.Unity5/Assets/Sequences.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
using DG.Tweening;
|
||||
|
||||
public class Sequences : MonoBehaviour
|
||||
{
|
||||
public Transform cube;
|
||||
public float duration = 4;
|
||||
|
||||
IEnumerator Start()
|
||||
{
|
||||
// Start after one second delay (to ignore Unity hiccups when activating Play mode in Editor)
|
||||
yield return new WaitForSeconds(1);
|
||||
|
||||
// Create a new Sequence.
|
||||
// We will set it so that the whole duration is 6
|
||||
Sequence s = DOTween.Sequence();
|
||||
// Add an horizontal relative move tween that will last the whole Sequence's duration
|
||||
s.Append(cube.DOMoveX(6, duration).SetRelative().SetEase(Ease.InOutQuad));
|
||||
// Insert a rotation tween which will last half the duration
|
||||
// and will loop forward and backward twice
|
||||
s.Insert(0, cube.DORotate(new Vector3(0, 45, 0), duration / 2).SetEase(Ease.InQuad).SetLoops(2, LoopType.Yoyo));
|
||||
// Add a color tween that will start at half the duration and last until the end
|
||||
s.Insert(duration / 2, cube.GetComponent<Renderer>().material.DOColor(Color.yellow, duration / 2));
|
||||
// Set the whole Sequence to loop infinitely forward and backwards
|
||||
s.SetLoops(-1, LoopType.Yoyo);
|
||||
}
|
||||
}
|
||||
12
UnityExamples.Unity5/Assets/Sequences.cs.meta
Normal file
12
UnityExamples.Unity5/Assets/Sequences.cs.meta
Normal file
@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 93d78ed74e9e35b448bdd97d65d96a2e
|
||||
timeCreated: 1427042087
|
||||
licenseType: Pro
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/Sequences.unity
Normal file
BIN
UnityExamples.Unity5/Assets/Sequences.unity
Normal file
Binary file not shown.
8
UnityExamples.Unity5/Assets/Sequences.unity.meta
Normal file
8
UnityExamples.Unity5/Assets/Sequences.unity.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b0790038b06c9bd42a7f8155d5a1a3ee
|
||||
timeCreated: 1427042082
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
59
UnityExamples.Unity5/Assets/UGUI.cs
Normal file
59
UnityExamples.Unity5/Assets/UGUI.cs
Normal file
@ -0,0 +1,59 @@
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using System.Collections;
|
||||
using DG.Tweening;
|
||||
|
||||
public class UGUI : MonoBehaviour
|
||||
{
|
||||
public Image dotweenLogo, circleOutline;
|
||||
public Text text, relativeText, scrambledText;
|
||||
public Slider slider;
|
||||
|
||||
void Start()
|
||||
{
|
||||
// All tweens are created in a paused state (by chaining to them a final Pause()),
|
||||
// so that the UI Play button can activate them when pressed.
|
||||
// Also, the ones that don't loop infinitely have the AutoKill property set to FALSE,
|
||||
// so they won't be destroyed when complete and can be resued by the RESTART button
|
||||
|
||||
// Animate the fade out of DOTween's logo
|
||||
dotweenLogo.DOFade(0, 1.5f).SetAutoKill(false).Pause();
|
||||
|
||||
// Animate the circle outline's color and fillAmount
|
||||
circleOutline.DOColor(RandomColor(), 1.5f).SetEase(Ease.Linear).Pause();
|
||||
circleOutline.DOFillAmount(0, 1.5f).SetEase(Ease.Linear).SetLoops(-1, LoopType.Yoyo)
|
||||
.OnStepComplete(()=> {
|
||||
circleOutline.fillClockwise = !circleOutline.fillClockwise;
|
||||
circleOutline.DOColor(RandomColor(), 1.5f).SetEase(Ease.Linear);
|
||||
})
|
||||
.Pause();
|
||||
|
||||
// Animate the first text...
|
||||
text.DOText("This text will replace the existing one", 2).SetEase(Ease.Linear).SetAutoKill(false).Pause();
|
||||
// Animate the second (relative) text...
|
||||
relativeText.DOText(" - This text will be added to the existing one", 2).SetRelative().SetEase(Ease.Linear).SetAutoKill(false).Pause();
|
||||
// Animate the third (scrambled) text...
|
||||
scrambledText.DOText("This text will appear from scrambled chars", 2, true).SetEase(Ease.Linear).SetAutoKill(false).Pause();
|
||||
|
||||
// Animate the slider
|
||||
slider.DOValue(1, 1.5f).SetEase(Ease.InOutQuad).SetLoops(-1, LoopType.Yoyo).Pause();
|
||||
}
|
||||
|
||||
// Called by PLAY button OnClick event. Starts all tweens
|
||||
public void StartTweens()
|
||||
{
|
||||
DOTween.PlayAll();
|
||||
}
|
||||
|
||||
// Called by RESTART button OnClick event. Restarts all tweens
|
||||
public void RestartTweens()
|
||||
{
|
||||
DOTween.RestartAll();
|
||||
}
|
||||
|
||||
// Returns a random color
|
||||
Color RandomColor()
|
||||
{
|
||||
return new Color(Random.Range(0f, 1f), Random.Range(0f, 1f), Random.Range(0f, 1f), 1);
|
||||
}
|
||||
}
|
||||
12
UnityExamples.Unity5/Assets/UGUI.cs.meta
Normal file
12
UnityExamples.Unity5/Assets/UGUI.cs.meta
Normal file
@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 133bc010078065d4badd87c0b66a62c8
|
||||
timeCreated: 1427039689
|
||||
licenseType: Pro
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/Assets/UGUI.unity
Normal file
BIN
UnityExamples.Unity5/Assets/UGUI.unity
Normal file
Binary file not shown.
8
UnityExamples.Unity5/Assets/UGUI.unity.meta
Normal file
8
UnityExamples.Unity5/Assets/UGUI.unity.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f9f17df2e1fb11a4184c4d8a48de91ef
|
||||
timeCreated: 1427039684
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
UnityExamples.Unity5/ProjectSettings/AudioManager.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/AudioManager.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/DynamicsManager.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/DynamicsManager.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/EditorBuildSettings.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/EditorBuildSettings.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/EditorSettings.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/EditorSettings.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/GraphicsSettings.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/GraphicsSettings.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/InputManager.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/InputManager.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/NavMeshAreas.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/NavMeshAreas.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/NetworkManager.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/NetworkManager.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/Physics2DSettings.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/Physics2DSettings.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/ProjectSettings.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/ProjectSettings.asset
Normal file
Binary file not shown.
2
UnityExamples.Unity5/ProjectSettings/ProjectVersion.txt
Normal file
2
UnityExamples.Unity5/ProjectSettings/ProjectVersion.txt
Normal file
@ -0,0 +1,2 @@
|
||||
m_EditorVersion: 5.0.0f4
|
||||
m_StandardAssetsVersion: 0
|
||||
BIN
UnityExamples.Unity5/ProjectSettings/QualitySettings.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/QualitySettings.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/TagManager.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/TagManager.asset
Normal file
Binary file not shown.
BIN
UnityExamples.Unity5/ProjectSettings/TimeManager.asset
Normal file
BIN
UnityExamples.Unity5/ProjectSettings/TimeManager.asset
Normal file
Binary file not shown.
@ -1021,6 +1021,22 @@
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOMixedMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Transform's position BY the given value (as if it was set to relative),
|
||||
in a way that allows other DOMixedMoveBy tweens to work together on the same target,
|
||||
instead than fight each other as multiple DOMove would do.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="byValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOLocalMixedMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Transform's localPosition BY the given value (as if it was set to relative),
|
||||
in a way that allows other DOMixedMoveBy tweens to work together on the same target,
|
||||
instead than fight each other as multiple DOMove would do.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="byValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DORotate(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
|
||||
<summary>Tweens a Transform's rotation to the given value.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1021,6 +1021,22 @@
|
||||
<param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOMixedMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Transform's position BY the given value (as if it was set to relative),
|
||||
in a way that allows other DOMixedMoveBy tweens to work together on the same target,
|
||||
instead than fight each other as multiple DOMove would do.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="byValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DOLocalMixedMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
|
||||
<summary>Tweens a Transform's localPosition BY the given value (as if it was set to relative),
|
||||
in a way that allows other DOMixedMoveBy tweens to work together on the same target,
|
||||
instead than fight each other as multiple DOMove would do.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
<param name="byValue">The end value to reach</param><param name="duration">The duration of the tween</param>
|
||||
<param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
|
||||
</member>
|
||||
<member name="M:DG.Tweening.ShortcutExtensions.DORotate(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
|
||||
<summary>Tweens a Transform's rotation to the given value.
|
||||
Also stores the transform as the tween's target so it can be used for filtered operations</summary>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user