###前提・実現したいこと
Unity 2017にて、別の方のこの質問と同じことを試しています。
利用するテクスチャを、横幅16K解像度のものを使用したいと考えています。
Unityのテクスチャインポーターからは8Kまでしか選択肢がありませんが、ここ によるとWindowsのDirect X 11の場合は最大で16Kまでとあります。
16K解像度にてテクスチャを貼る方法はありませんでしょうか。
###該当のソースコード
C
1//https://teratail.com/questions/24071への回答から 2using UnityEngine; 3using System.Collections; 4using UnityEngine; 5 6public class test : MonoBehaviour { 7 8 public Material[] _material; // 割り当てるマテリアル. 9 private int i; 10 11 // Use this for initialization 12 void Start () { 13 i = 0; 14 } 15 16 // Update is called once per frame 17 void Update () { 18 19 if (Input.GetKeyUp(KeyCode.Space)) { 20 i++; 21 if (i == 3) { 22 i = 0; 23 } 24 25 this.GetComponent<Renderer>().material=_material[i]; 26 } 27 28 } 29}
よろしくお願いいたします。

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/10/09 00:13 編集