1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-21 01:36:05 +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:
Demigiant 2019-09-20 12:09:14 +02:00
parent 9926fde367
commit bf41153d38
16 changed files with 15 additions and 8 deletions

View File

@ -1,6 +1,6 @@
fileFormatVersion: 2
guid: d3e15b806a8368742ba6f10e794d7b76
timeCreated: 1565912005
timeCreated: 1568972667
licenseType: Pro
TextureImporter:
fileIDToRecycleName: {}

View File

@ -34,7 +34,7 @@ namespace DG.Tweening
public class DOTween
{
/// <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 ////////////////////////////////////

View File

@ -199,7 +199,15 @@ namespace DG.DOTweenEditor.UI
GUI.color = Color.white;
GUILayout.FlexibleSpace();
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();
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("Check Updates", EditorGUIUtils.btBigStyle, GUILayout.Width(_HalfBtSize))) Application.OpenURL("http://dotween.demigiant.com/download.php?v=" + DOTween.Version);
GUILayout.EndHorizontal();
GUILayout.Space(14);
GUILayout.Space(4);
if (GUILayout.Button(_footerImg, EditorGUIUtils.btImgStyle)) Application.OpenURL("http://www.demigiant.com/");
}

View File

@ -54,14 +54,13 @@ echo f | xcopy %CopyFromDir% %CopyToDirModulesTest% /Y /I /E
:: bin.Global_no_meta
echo ::: Exporting from %CopyFromDir% to %CopyToDirNoMeta%
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
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnity5Tests%
echo f | xcopy %CopyFromDir% %CopyToDirUnity5Tests% /Y /I /E
exit /B
:: UnityTests.Unity2019
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnity2019Tests%
echo f | xcopy %CopyFromDir% %CopyToDirUnity2019Tests% /Y /I /E
:: UnityTests.Unity4
echo ::: Exporting from %CopyFromDir% to %CopyToDirUnityTests%
echo f | xcopy %CopyFromDir% %CopyToDirUnityTests% /Y /I /E

Binary file not shown.