Skip to content

Commit

Permalink
Deenote 0.5.6 15-12-2017
Browse files Browse the repository at this point in the history
Added drag-and-drop file opener. (Thanks to Schwarzer for his dll!)
And a famous quote from Schwarzer himself.
  • Loading branch information
Chlorie committed Dec 15, 2017
1 parent 1b5c215 commit d64588e
Show file tree
Hide file tree
Showing 12 changed files with 428 additions and 71 deletions.
9 changes: 9 additions & 0 deletions Assets/Images/AboutAndHelp.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Assets/Images/AboutAndHelp/schwarzerquote.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 76 additions & 0 deletions Assets/Images/AboutAndHelp/schwarzerquote.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Assets/Plugins/DragAndDrop.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Assets/Plugins/DragAndDrop/DragAndDrop.dll
Git LFS file not shown
34 changes: 34 additions & 0 deletions Assets/Plugins/DragAndDrop/DragAndDrop.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions Assets/Plugins/DragAndDrop/DragAndDropUnity.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using UnityEngine;
using DragAndDrop;

public class DragAndDropUnity
{
public static void Enable(OnDropFileDelegate callback)
{
DragAndDrop.DragAndDrop.Enable(callback, Application.productName);
}
public static void Disable()
{
DragAndDrop.DragAndDrop.Disable();
}
}
12 changes: 12 additions & 0 deletions Assets/Plugins/DragAndDrop/DragAndDropUnity.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d64588e

Please sign in to comment.