mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 17:26:03 +08:00
Added reminder to reference DOTween ASMDEFs from other ASMDEFs/Libraries that need them
+ PostBuild_DOTween.bat fix (re-enabled export to default test project)
This commit is contained in:
parent
9926fde367
commit
bf41153d38
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: d3e15b806a8368742ba6f10e794d7b76
|
guid: d3e15b806a8368742ba6f10e794d7b76
|
||||||
timeCreated: 1565912005
|
timeCreated: 1568972667
|
||||||
licenseType: Pro
|
licenseType: Pro
|
||||||
TextureImporter:
|
TextureImporter:
|
||||||
fileIDToRecycleName: {}
|
fileIDToRecycleName: {}
|
||||||
|
|||||||
@ -34,7 +34,7 @@ namespace DG.Tweening
|
|||||||
public class DOTween
|
public class DOTween
|
||||||
{
|
{
|
||||||
/// <summary>DOTween's version</summary>
|
/// <summary>DOTween's version</summary>
|
||||||
public static readonly string Version = "1.2.270"; // Last version before modules: 1.1.755
|
public static readonly string Version = "1.2.275"; // Last version before modules: 1.1.755
|
||||||
|
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
// Options ////////////////////////////////////
|
// Options ////////////////////////////////////
|
||||||
|
|||||||
@ -199,7 +199,15 @@ namespace DG.DOTweenEditor.UI
|
|||||||
GUI.color = Color.white;
|
GUI.color = Color.white;
|
||||||
GUILayout.FlexibleSpace();
|
GUILayout.FlexibleSpace();
|
||||||
GUILayout.EndHorizontal();
|
GUILayout.EndHorizontal();
|
||||||
GUILayout.Space(8);
|
// GUILayout.BeginVertical(GUI.skin.box);
|
||||||
|
GUILayout.Label(
|
||||||
|
"ASMDEFs are useful if you need to reference the extra DOTween modules API (like [<i>UIelement</i>].DOColor)" +
|
||||||
|
" from other ASMDEFs/Libraries instead of loose scripts," +
|
||||||
|
" but remember to have those <b>ASMDEFs/Libraries reference DOTween ones</b>.",
|
||||||
|
EditorGUIUtils.wordWrapRichTextLabelStyle
|
||||||
|
);
|
||||||
|
// GUILayout.EndVertical();
|
||||||
|
GUILayout.Space(3);
|
||||||
|
|
||||||
GUILayout.BeginHorizontal();
|
GUILayout.BeginHorizontal();
|
||||||
if (GUILayout.Button("Website", EditorGUIUtils.btBigStyle, GUILayout.Width(_HalfBtSize))) Application.OpenURL("http://dotween.demigiant.com/index.php");
|
if (GUILayout.Button("Website", EditorGUIUtils.btBigStyle, GUILayout.Width(_HalfBtSize))) Application.OpenURL("http://dotween.demigiant.com/index.php");
|
||||||
@ -213,7 +221,7 @@ namespace DG.DOTweenEditor.UI
|
|||||||
if (GUILayout.Button("Changelog", EditorGUIUtils.btBigStyle, GUILayout.Width(_HalfBtSize))) Application.OpenURL("http://dotween.demigiant.com/download.php");
|
if (GUILayout.Button("Changelog", EditorGUIUtils.btBigStyle, GUILayout.Width(_HalfBtSize))) Application.OpenURL("http://dotween.demigiant.com/download.php");
|
||||||
if (GUILayout.Button("Check Updates", EditorGUIUtils.btBigStyle, GUILayout.Width(_HalfBtSize))) Application.OpenURL("http://dotween.demigiant.com/download.php?v=" + DOTween.Version);
|
if (GUILayout.Button("Check Updates", EditorGUIUtils.btBigStyle, GUILayout.Width(_HalfBtSize))) Application.OpenURL("http://dotween.demigiant.com/download.php?v=" + DOTween.Version);
|
||||||
GUILayout.EndHorizontal();
|
GUILayout.EndHorizontal();
|
||||||
GUILayout.Space(14);
|
GUILayout.Space(4);
|
||||||
if (GUILayout.Button(_footerImg, EditorGUIUtils.btImgStyle)) Application.OpenURL("http://www.demigiant.com/");
|
if (GUILayout.Button(_footerImg, EditorGUIUtils.btImgStyle)) Application.OpenURL("http://www.demigiant.com/");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -54,14 +54,13 @@ echo f | xcopy %CopyFromDir% %CopyToDirModulesTest% /Y /I /E
|
|||||||
:: bin.Global_no_meta
|
:: bin.Global_no_meta
|
||||||
echo ::: Exporting from %CopyFromDir% to %CopyToDirNoMeta%
|
echo ::: Exporting from %CopyFromDir% to %CopyToDirNoMeta%
|
||||||
echo f | xcopy %CopyFromDir% %CopyToDirNoMeta% /Y /I /E
|
echo f | xcopy %CopyFromDir% %CopyToDirNoMeta% /Y /I /E
|
||||||
:: UnityTests.Unity2019
|
|
||||||
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnity2019Tests%
|
|
||||||
echo f | xcopy %CopyFromDir% %CopyToDirUnity2019Tests% /Y /I /E
|
|
||||||
exit /B
|
|
||||||
:: UnityTests.Unity5
|
:: UnityTests.Unity5
|
||||||
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnity5Tests%
|
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnity5Tests%
|
||||||
echo f | xcopy %CopyFromDir% %CopyToDirUnity5Tests% /Y /I /E
|
echo f | xcopy %CopyFromDir% %CopyToDirUnity5Tests% /Y /I /E
|
||||||
exit /B
|
exit /B
|
||||||
|
:: UnityTests.Unity2019
|
||||||
|
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnity2019Tests%
|
||||||
|
echo f | xcopy %CopyFromDir% %CopyToDirUnity2019Tests% /Y /I /E
|
||||||
:: UnityTests.Unity4
|
:: UnityTests.Unity4
|
||||||
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnityTests%
|
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnityTests%
|
||||||
echo f | xcopy %CopyFromDir% %CopyToDirUnityTests% /Y /I /E
|
echo f | xcopy %CopyFromDir% %CopyToDirUnityTests% /Y /I /E
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user