This file contains hidden or 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
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| using UnityEditor; | |
| using UnityEditorInternal; | |
| using UnityEngine; | |
| namespace Naninovel |
This file contains hidden or 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
| using BlendModes; | |
| using UnityEngine; | |
| [RequireComponent(typeof(BlendModeEffect))] | |
| public class SetTextureProperty : MonoBehaviour | |
| { | |
| public Texture2D Texture; | |
| [ContextMenu("Set Texture")] | |
| public void SetTexture () |
This file contains hidden or 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
| public class AboutWindow : EditorWindow | |
| { | |
| public static string InstalledVersion { get => PlayerPrefs.GetString(installedVersionKey); set => PlayerPrefs.SetString(installedVersionKey, value); } | |
| private const string installedVersionKey = "Naninovel." + nameof(AboutWindow) + "." + nameof(InstalledVersion); | |
| private const string guideUri = "https://naninovel.com/guide/getting-started.html"; | |
| private const string commandsUri = "https://naninovel.com/api/"; | |
| private const string discordUri = "https://discord.gg/BfkNqem"; | |
| private const string supportUri = "https://naninovel.com/support/"; | |
| private const string reviewUri = "https://assetstore.unity.com/packages/templates/systems/naninovel-visual-novel-engine-135453#reviews"; |
OlderNewer