エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Texture から Texture2D への変換 - 強火で進め
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Texture から Texture2D への変換 - 強火で進め
【参考情報】 Reading pixel data from material.mainTexture returns grey color - Unity Answers http... 【参考情報】 Reading pixel data from material.mainTexture returns grey color - Unity Answers http://answers.unity3d.com/questions/1271693/reading-pixel-data-from-materialmaintexture-return.html Texture を RenderTexture を経由して、 Texture2D に変換。 Texture mainTexture = mat.GetTexture("_MainTex"); // Material のメインテクスチャを取得 Texture2D texture2D = new Texture2D(mainTexture.width, mainTexture.height, TextureFormat.RG