-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [3.0.0-preview.3](mob-sakai/ParticleEffectForUGUI@v3.0.0-preview.2...v3.0.0-preview.3) (2020-02-17) ### Bug Fixes * remove unnecessary scripts ([0a43740](mob-sakai/ParticleEffectForUGUI@0a43740)) * workaround for [#70](mob-sakai/ParticleEffectForUGUI#70) ([4bbcc33](mob-sakai/ParticleEffectForUGUI@4bbcc33))
- Loading branch information
1 parent
1726fe7
commit a3f2c14
Showing
7 changed files
with
35 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#if !OPEN_SESAME && UNITY_EDITOR | ||
using UnityEditor; | ||
using UnityEditor.Compilation; | ||
|
||
namespace Coffee.OpenSesame | ||
{ | ||
[InitializeOnLoad] | ||
internal class Portable | ||
{ | ||
static Portable() | ||
{ | ||
var assemblyName = typeof(Portable).Assembly.GetName().Name; | ||
var asmdefPath = CompilationPipeline.GetAssemblyDefinitionFilePathFromAssemblyName(assemblyName); | ||
UnityEngine.Debug.LogFormat("<b>Request to recompile: {0} ({1})</b>", assemblyName, asmdefPath); | ||
AssetDatabase.ImportAsset(asmdefPath); | ||
} | ||
} | ||
} | ||
#endif |
2 changes: 1 addition & 1 deletion
2
NewBehaviourScript.cs.meta → Scripts/Editor/OpenSesamePortable.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,14 @@ | |
"name": "com.coffee.ui-particle", | ||
"displayName": "UI Particle", | ||
"description": "This plugin provide a component to render particle effect for uGUI.\nThe particle rendering is maskable and sortable, without Camera, RenderTexture or Canvas.", | ||
"version": "3.0.0-preview.2", | ||
"version": "3.0.0-preview.3", | ||
"unity": "2018.2", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/mob-sakai/ParticleEffectForUGUI.git" | ||
}, | ||
"src": "Assets/Coffee/UIExtensions/UIParticle", | ||
"author": "mob-sakai <[email protected]> (https://github.com/mob-sakai)", | ||
"editorOnly": false, | ||
"upmSupport": true, | ||
"dependencies": {}, | ||
"samples": [ | ||
{ | ||
|