查看: 952|回复: 0
打印 上一主题 下一主题

[其他] 制作小地图的代码

[复制链接]

2722

主题

42

听众

3万

积分

资深设计师

Rank: 7Rank: 7Rank: 7

纳金币
38268
精华
111

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

跳转到指定楼层
楼主
发表于 2015-9-30 23:20:03 |只看该作者 |倒序浏览

制作小地图的代码
  1. using UnityEngine;

  2. using System.Collections;

  3. public class mymap : MonoBehaviour {

  4. // Use this for initialization

  5. public Texture map  ;

  6. public Texture playerTexture ;

  7. float cubePosX=0 ;

  8. float cubePosY=0 ;

  9. public  GameObject player  ;

  10. public GameObject plane;

  11. float planeWidth;

  12. public Rect windowRect = new Rect(0,0,100,100);

  13. void Start()

  14. {

  15. planeWidth=plane.GetComponent<MeshFilter>().mesh.bounds.size.x*plane.transform.localScale.x;

  16. }

  17. void OnGUI ()

  18. {

  19. windowRect = GUI.Window(0,windowRect,draw,“”);

  20. }

  21. void Update()

  22. {

  23. cubePosX =map.width*player.transform.position.x/planeWidth+map.width/2;//根据palyer在plane的比例关系,映射到对应地图位置。

  24. cubePosY =map.height*player.transform.position.z/planeWidth+map.height/2;

  25. if(Input.GetMouseButton(0))

  26. {

  27. }

  28. }

  29. void draw(int windowID)

  30. {

  31. GUI.DrawTexture(new Rect(0,0,map.width/2,map.height/2),map);

  32. GUI.DrawTexture(new Rect(cubePosX,cubePosY,15,15),playerTexture);

  33. GUI.DragWindow();

  34. }

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

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

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

GMT+8, 2024-11-15 01:24 , Processed in 1.316639 second(s), 28 queries .

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

© 2008-2019 Narkii Inc.

回顶部