12 第1页 | 共2 页下一页
返回列表 发新帖
查看: 2893|回复: 10
打印 上一主题 下一主题

A tileset selector (二)

[复制链接]

5552

主题

2

听众

8万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
11

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2011-11-18 15:14:00 |只看该作者 |倒序浏览


           Step 3
           

           Place these two scripts in the Editor folder:
         

           /*
           

                   Copyright 2010 CJ Currie
           

                   @Date: October 2010
           

                   @Contact:
           
            CJCurrie@BlackStormsStudios.com
           


                   @Script: A custom Inspector and popout window for choosing tiles from a tileset
           

                   @Connections:
           

                   @TODO: Suppress the error thrown on line 58.
           

           */
           

            
           

           using UnityEngine;
           

           using UnityEditor;
           

            
           

           [CustomEditor (typeof(TileManager))]
           

           public class TileManagerEditor : Editor {
           

            
           

                   public static Texture2D tileset;
           

                   int tileSize = 16;
           

                   TileManager targ;
           

                   //public Texture2D currentTile;
           

            
           

            public override void OnInspectorGUI()
           

            {
           

                    targ = (TileManager)target;
           

             tileset = (Texture2D)EditorGUILayout.ObjectField("Current tileset", tileset, typeof(Texture2D));
           

            
           

             GUILayout.BeginHorizontal();
           

             GUILayout.Label("Unique ID: ");
           

             targ.uniqueID = EditorGUILayout.TextField (targ.uniqueID, GUILayout.Width(100));
           

             GUILayout.Label(" Tile Size ");
           

             tileSize = EditorGUILayout.IntField(tileSize, GUILayout.Width(20));
           

             GUILayout.EndHorizontal();
           

            
           

             if (GUILayout.Button("Select new tile"))
           

             {
           

               TileSelectorEditor window = (TileSelectorEditor) EditorWindow.GetWindow (typeof (TileSelectorEditor));
           

               window.Init(this, tileSize, tileset);
           

             }
           

            
           

             GUILayout.Space(30);
           

            
           

             GUILayout.Label("Last tile configuration:
"+"("+targ.lastTile[0]+","+targ.lastTile[1]+") to ("+
           

                   (targ.lastTile[0]+targ.lastTile[2])+","+(targ.lastTile[1]+targ.lastTile[3])+")");
           

                  
           

             if (GUILayout.Button ("Reselect last tile configuration"))
           

             {
           

                     SetTile(targ.lastTile[0], targ.lastTile[1], targ.lastTile[2], targ.lastTile[3]);
           

                     //((TileManager)target).renderer.material.mainTexture = ((TileManager)target).currentTile;
           

             }
           

            
           

             GUILayout.BeginHorizontal();
           

                     GUILayout.Label ("Last selected tile:    ");
           

                     GUILayout.Label (targ.currentTile);
           

                   GUILayout.EndHorizontal();
           

            
           

             GUILayout.Space(20);
           

            
           

             if (GUILayout.Button("RESET: Lose all assets and selection data?"))
           

             {
           

                   targ.lastTile = new int[4];
           

                   AssetDatabase.DeleteAsset(targ.uniquePath + "
           


            _
           
           tex.asset");
           

                   AssetDatabase.DeleteAsset(targ.uniquePath + "
           
            _
           
           mat.asset");
           

                   targ.uniquePath = "";
           

                   targ.uniqueID = "";
           

             }
           

            }
           

            
           

            // =================
           

            //  Remotely Called
           

            // =================
           

            public void SetTile (int x, int y, int width, int height)
           

             {
           

               if (!tileset)
           

               {
           

                   Debug.LogError ("No Tileset selected");
           

                 return;
           

               }
           

               
           

               if (width == 0 || height == 0)
           

               {
           

                   Debug.LogError ("Cannot select a tile of width or height 0");
           

                   return;
           

               }
           

              
           

              
           

               // Set the last tile so it can be re-fetched
           

               targ.lastTile[0] = x;
           

               targ.lastTile[1] = y;
           

               targ.lastTile[2] = width;
           

               targ.lastTile[3] = height;
           

              
           

               // Set other info on the TileManager
           

               targ.width = width;
           

               targ.height = height;
           

              
           

               // Pick the tile's texture
           

               int tHeight = tileset.height;
           

               y += - 2 + height;          // Do a little offsetting because the way the pixels are mapped is weird
           

               y = (tHeight/tileSize) - y;    // Invert since GetPixels is bottom-based
           

                  
           

               // --- Make the new texture
           

               Color[] pixels = tileset.GetPixels (x*tileSize, y*tileSize, width*tileSize, height*tileSize);
           

               Texture2D newTex = new Texture2D (width*tileSize, height*tileSize);
           

               newTex.SetPixels(pixels);
           

               newTex.mipMapBias = -10;
           

               newTex.Apply(false);
           

              
           

               // --- Modify the assets we've created ---
           

               targ.uniquePath = "Assets/Map Pieces/Components/Images/" + targ.uniqueID;
           

              
           

                     AssetDatabase.CreateAsset(newTex, targ.uniquePath+"
           
            _
           
           tex.asset");
           

              
           

               targ.currentTile = newTex;  // Set the icon
           

              
           

               // --- Make the new Material
           

               Material newMat = new Material (targ.renderer.sharedMaterial);
           

                    
           

                     // --- Apply texture to the material - Note that on slower machines it may attempt to do this before the asset is finished creating, and a nullreference will be thrown.  Ignore it
           

                     //
           

               newMat.mainTexture = (Texture2D)AssetDatabase.LoadAssetAtPath (targ.uniquePath+"
           
            _
           
           tex.asset", typeof(Texture2D) );
           

              
           

                     AssetDatabase.CreateAsset (newMat, targ.uniquePath+"
           
            _
           
           mat.asset");
           

            
           

               try
           

               {
           

                             targ.renderer.sharedMaterial = (Material)AssetDatabase.LoadAssetAtPath (targ.uniquePath+"
           
            _
           
           mat.asset", typeof(Material) );
           

                             //targ.renderer.sharedMaterial.mainTexture = (Texture2D)AssetDatabase.LoadAssetAtPath (targ.uniquePath, typeof(Texture2D) );
           

                           }
           

                           catch (System.Exception e)
           

                           {
           

                                   Debug.LogError (e);
           

                           }
           

             }
           

           }
           

           Note that the path on line 108 needs to be modified from "Assets/Map Pieces/Components/Images/" to "Assets/your path".
         

           This is the other:
         

           /*
           

                   Copyright 2010 CJ Currie
           

                   @Date: October 2010
           

                   @Contact:
           
            CJCurrie@BlackStormsStudios.com
           


                   @Script: Creates the window that chooses the tiles and submits them to the TileManagerEditor.
           

                   @Connections:
           

                   @TODO:
           

           */
           

            
           

           using UnityEngine;
           

           using UnityEditor;
           

            
           

           public class TileSelectorEditor : EditorWindow {
           

            
           

             // --- Cache ---
           

             public Texture2D selectionBox;
           

            
           

             // --- Init Values ---
           

             TileManagerEditor target;
           

             Vector2 scrollview;
           

            
           

             // --- Script vars ---
           

             Texture2D tileset = null;
           

             int tileSize;
           

             Vector2 mousePos;
           

             float zoom = 1.5f;
           

             //int[] numberOfTiles = new int[2];
           

             int[] selectedStart = new int[2];   // The top-left-most tile selected
           

             int horizTilesSelected;   // How many tiles wide the selection is
           

             int vertTilesSelected;    // How many tiles tall
           

             bool isDragging;
           

             int padding
           
            _
           
           top = 2;
           

            
           

            public void Init(TileManagerEditor incTarget, int incTileSize, Texture2D inctileset)
           

            {
           

             wantsMouseMove = ***e;
           

            
           

             target = (TileManagerEditor)incTarget;
           

             tileSize = incTileSize;
           

             //numberOfTiles[0] = tileset.width / tileSize;
           

             //numberOfTiles[1] = tileset.height / tileSize;
           

             tileset = inctileset;
           

            }
           

            
           

            
           

             void OnGUI()
           

             {
           

               if (!tileset)
           

               {
           

                 GUILayout.FlexibleSpace();
           

                 GUILayout.BeginHorizontal();
           

                 GUILayout.FlexibleSpace();
           

                 GUILayout.Label("NO TILESET SELECTED");
           

                 GUILayout.FlexibleSpace();
           

                 GUILayout.EndHorizontal();
           

                 GUILayout.FlexibleSpace();
           

                 return;
           

               }
           

              
           

               // Zoom controls
           

              GUILayout.BeginHorizontal(GUILayout.Width(300), GUILayout.Height(tileSize*padding
           
            _
           
           top*zoom));
           

               GUILayout.Label (" Zoom ");
           

               // Check that we're not zooming too far, too
           

               if (GUILayout.Button(" + ") && zoom < 4)
           

               {zoom += .5f;}
           

               else if (GUILayout.Button(" -  ") && zoom > 1)
           

               {zoom -= .5f;}
           

              
           

               GUILayout.Space(50);
           

              
           

               // Submit changes
           

               if (GUILayout.Button("Set Sprite", GUILayout.Width(200)))
           

               {
           

                   // Increment the width and height so it's no longer zero-based
           

                 target.SetTile(selectedStart[0], selectedStart[1], horizTilesSelected + 1, vertTilesSelected + 1);  
           

               }
           

              
           

               GUILayout.Label("Selected: ("+selectedStart[0]+","+selectedStart[1]+") to ("+(selectedStart[0]+horizTilesSelected)+","+(selectedStart[1]+vertTilesSelected)+")" );
           

              
           

              GUILayout.EndHorizontal();
           

              
           

               // -----------------
           

               // Begin scroll view
           

               // Make the scroll bar
           

               scrollview = EditorGUILayout.BeginScrollView(scrollview, GUILayout.Width (position.width), GUILayout.Height (position.height));
           

               // Round to the nearest tileSize. Dividing and then multiplying by the same number forces scrollview to be a multiple of tileSize
           

               scrollview.x = (int)(scrollview.x/tileSize/zoom);
           

               scrollview.x *= tileSize*zoom;
           

               scrollview.y = (int)(scrollview.y/tileSize/zoom);
           

               scrollview.y *= tileSize*zoom;
           

              
           

               // Show the tileset
           

               GUILayout.Label("", GUILayout.Width(tileset.width * zoom), GUILayout.Height(tileset.height * zoom));
           

               GUI.DrawTexture(new Rect(0,0,tileset.width * zoom,tileset.height * zoom), tileset);
           

              
           

               // End scroll view
           

              EditorGUILayout.EndScrollView ();
           

              // ------------------
           

              
           

               Event e = Event.current;
           

               int[] currentPos = new int[2];
           

               currentPos[0] = (int)((e.mousePosition.x + scrollview.x) / tileSize / zoom);
           

               currentPos[1] = (int)((e.mousePosition.y + scrollview.y) / tileSize / zoom);
           

              
           

               // --- Tile select  ---
           

              
           

               if (isDragging)
           

               {
           

                 // We're back on the first tile
           

                 if (currentPos[0] == selectedStart[0])
           

                   horizTilesSelected = 0;
           

                 if (currentPos[1] == selectedStart[1])
           

                   vertTilesSelected = 0;
           

              
           

                 if (currentPos != selectedStart)
           

                 {      
           

                   // Are we to the left of the selectedStart?
           

                   if (currentPos[0] < selectedStart[0])
           

                   {
           

                     horizTilesSelected ++;    // Change how many tiles wide the selection is
           

                     selectedStart[0] = currentPos[0];   // Change the selected start
           

                   }
           

                   // Else, if we are to the right, change width
           

                   else if (selectedStart[0] < currentPos[0])
           

                     horizTilesSelected = currentPos[0] - selectedStart[0];    // Change the width
           

                  
           

                   // Are we above the selectedStart?
           

                   if (currentPos[1] < selectedStart[1])
           

                   {
           

                     vertTilesSelected = selectedStart[1] - currentPos[1];   // Change how many tiles tall the selection is
           

                     selectedStart[1] = currentPos[1];   // Change the selected start
           

                   }
           

                   // Else, if we are below, change height
           

                   else if (selectedStart[1] < currentPos[1])
           

                     vertTilesSelected = currentPos[1] - selectedStart[1];
           

                   }
           

               }
           

              
           

               if (e.type == EventType.MouseDown && e.button == 0)   // Left mouse button down - first selection
           

               {   
           

                 selectedStart[0] = currentPos[0];
           

                 selectedStart[1] = currentPos[1];
           

                 horizTilesSelected = 0;
           

                 vertTilesSelected = 0;
           

               
           

                 isDragging = ***e;
           

               }
           

               else if (isDragging && e.type == EventType.MouseUp && e.button == 0)
           

               {
           

                 isDragging = false;
           

               }
           

              
           

               int[] offset = new int[2];
           

               offset[0] = (int)(scrollview.x / tileSize / zoom);
           

               offset[1] = (int)(scrollview.y / tileSize / zoom);
           

              
           

               // Selection Indicator
           

               GUI.DrawTexture(new Rect((selectedStart[0]-offset[0]) * zoom * tileSize, (selectedStart[1]-offset[1]) * zoom * tileSize, tileSize*zoom * (horizTilesSelected+1),
           

                 tileSize*zoom * (vertTilesSelected+1)), selectionBox);
           

              
           

               // --- If we're in the window, redraw it
           

               if (EditorWindow.mouseOverWindow == this)
           

               {
           

                 this.Repaint();
           

               }
           

             }
           

           }
           

           Once the script compiles, set the default "Selection Box" reference image by clicking on the script and dragging the image to the exposed variable. I used a simple one I made in photoshop:
           

            
           



分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

462

主题

1

听众

31万

积分

首席设计师

Rank: 8Rank: 8

纳金币
2
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

沙发
发表于 2012-1-24 23:27:23 |只看该作者
祝你新年很灿烂,牛气哄哄冲霄汉,祝你明年业务多,好运连连一火车,祝你工作小轻松,玩玩闹闹很成功,祝你身体特别好,吃嘛嘛香没烦恼。
回复

使用道具 举报

tc    

5089

主题

1

听众

33万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

板凳
发表于 2012-3-6 23:27:04 |只看该作者
有意思!学习了!
回复

使用道具 举报

1023

主题

3

听众

359

积分

设计实习生

Rank: 2

纳金币
335582
精华
0

最佳新人

地板
发表于 2012-3-25 23:21:17 |只看该作者
这么后现代
回复

使用道具 举报

462

主题

1

听众

31万

积分

首席设计师

Rank: 8Rank: 8

纳金币
2
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

5#
发表于 2012-4-19 23:18:43 |只看该作者
再看一看,再顶楼主
回复

使用道具 举报

5969

主题

1

听众

39万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

6#
发表于 2012-5-7 23:25:44 |只看该作者
心中有爱,爱咋咋地
回复

使用道具 举报

5969

主题

1

听众

39万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

7#
发表于 2012-5-15 23:27:58 |只看该作者
爱咋咋地!
回复

使用道具 举报

5969

主题

1

听众

39万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

8#
发表于 2012-9-19 23:32:07 |只看该作者
楼主收集的可真全哦
回复

使用道具 举报

1023

主题

3

听众

359

积分

设计实习生

Rank: 2

纳金币
335582
精华
0

最佳新人

9#
发表于 2013-1-29 23:29:18 |只看该作者
非常感谢,管理员设置了需要对新回复进行审核,您的帖子通过审核后将被显示出来,现在将转入主题
回复

使用道具 举报

   

671

主题

1

听众

3247

积分

中级设计师

Rank: 5Rank: 5

纳金币
324742
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

10#
发表于 2013-2-14 23:26:01 |只看该作者
已阵亡的 蝶 随 风 舞 说过  偶尔按一下 CTRL A 会发现 世界还有另一面
回复

使用道具 举报

12 第1页 | 共2 页下一页
返回列表 发新帖
您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-29 13:21 , Processed in 0.116222 second(s), 29 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部