-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wallet entry search minor modification MC-144 * downgrade using syntax statement to C# 7..3 * codestyle adjustment * text mesh pro guide removed * textmeshpro folder renamed for the sake of shader compilation error fix * C# warnings cleanup (required by the asset store) * asset store adjustment in progress * remove unused packages in accordance with asset store requirements * version update in the player settings * remove unused shaders from text mesh pro assets * third party notices file * third party notices meta * third party notices extended * preparation python script completed * replace JsonUtility with Newtonsoft * modify preparation script * third party notices file added * wallet entry search minor modification MC-144 (#121) * wallet entry search minor modification MC-144 * downgrade using syntax statement to C# 7..3 * codestyle adjustment * constructor call * wallet entry search minor modification MC-144 * codestyle adjustment * text mesh pro guide removed * textmeshpro folder renamed for the sake of shader compilation error fix * C# warnings cleanup (required by the asset store) * asset store adjustment in progress * remove unused packages in accordance with asset store requirements * version update in the player settings * remove unused shaders from text mesh pro assets * third party notices file * third party notices meta * third party notices extended * preparation python script completed * replace JsonUtility with Newtonsoft * modify preparation script * third party notices file added * explicit constructor call * rename scripts back to runtime * preparation python script extended * dto namespaces adjustment * namespace missing fix + unused assembly reference fixed
- Loading branch information
1 parent
462b4a4
commit 4199801
Showing
186 changed files
with
493 additions
and
3,081 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
2 changes: 1 addition & 1 deletion
2
.../Examples/TextMesh Pro/Documentation.meta → Assets/MirageSDK/Examples/Prefabs.meta
100755 → 100644
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...irageSDK/Plugins/WalletConnectSharp2.meta → .../MirageSDK/Examples/Prefabs/UseCases.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 11 additions & 8 deletions
19
Assets/MirageSDK/Examples/Scripts/DTO/ApprovalForAllDTO.cs
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 |
---|---|---|
@@ -1,15 +1,18 @@ | ||
using MirageSDK.Data; | ||
using Nethereum.ABI.FunctionEncoding.Attributes; | ||
|
||
[Event("ApprovalForAll")] | ||
public class ApprovalForAllEventDTO : EventDTOBase | ||
namespace MirageSDK.DTO | ||
{ | ||
[Parameter("address", "account", 1, true)] | ||
public string Account { get; set; } | ||
[Event("ApprovalForAll")] | ||
public class ApprovalForAllEventDTO : EventDTOBase | ||
{ | ||
[Parameter("address", "account", 1, true)] | ||
public string Account { get; set; } | ||
|
||
[Parameter("address", "operator", 2, true)] | ||
public string Operator { get; set; } | ||
[Parameter("address", "operator", 2, true)] | ||
public string Operator { get; set; } | ||
|
||
[Parameter("bool", "approved", 3, false)] | ||
public bool Approved { get; set; } | ||
[Parameter("bool", "approved", 3, false)] | ||
public bool Approved { get; set; } | ||
} | ||
} |
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
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
11 changes: 7 additions & 4 deletions
11
Assets/MirageSDK/Examples/Scripts/DTO/SafeMintedEventDTO.cs
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
using MirageSDK.Data; | ||
using Nethereum.ABI.FunctionEncoding.Attributes; | ||
|
||
[Event("SafeMinted")] | ||
public class SafeMintedEventDTO : EventDTOBase | ||
namespace MirageSDK.DTO | ||
{ | ||
[Parameter("address", "to", 1, true)] | ||
public string To { get; set; } | ||
[Event("SafeMinted")] | ||
public class SafeMintedEventDTO : EventDTOBase | ||
{ | ||
[Parameter("address", "to", 1, true)] | ||
public string To { get; set; } | ||
} | ||
} |
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
...ion/TextMesh Pro User Guide 2016.pdf.meta → ...ageSDK/Examples/Settings/WalletItems.meta
100755 → 100644
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed
BIN
-678 KB
Assets/MirageSDK/Examples/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf
Binary file not shown.
Oops, something went wrong.