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
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 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 () |
OlderNewer