
unity
文章平均质量分 79
空夜飞鹰
这个作者很懒,什么都没留下…
展开
-
Unity3D 官方基础教程 Asset Workflow
Asset Workflow(资源工作流程)Here we'll explain the steps to use a single asset with Unity. These steps are general and are meant only as an overview for basic actions. For the example, we'll talk about转载 2015-03-01 14:15:30 · 595 阅读 · 0 评论 -
Unity3D 官方基础教程 Creating Scenes
Creating Scenes(创建场景)Scenes contain the objects of your game. They can be used to create a main menu, individual levels, and anything else. Think of each unique Scene file as a unique level. In ea转载 2015-03-01 14:18:27 · 739 阅读 · 0 评论 -
c#实现直角排列的99乘法表
using UnityEngine;using System.Collections;public class NewBehaviourScript : MonoBehaviour { // Use this for initialization void Start () { for (int i=1; i10; i++) {原创 2015-03-01 14:57:04 · 872 阅读 · 0 评论 -
Unity3D 高通增强现实的动画实现
首先https://developer.vuforia.com这个网站注册账号,然后我们需要先生成许可证密钥:点击Develop,在其下的License Manager里点击Add License Key,为我们的钥匙起个名字然后直接点击下一步,承认许可后点击确认,密钥生成好了,钥匙建好后打开会有一串字符要保存下来要用的。然后建立自己的database如图:取好自己原创 2015-03-03 21:49:01 · 1775 阅读 · 0 评论 -
Unity3D研究院之解决ttf繁体字体不显示问题
项目中用了个方正的简体的ttf字体,现在需要显示繁体汉字,那么策划找来了个对应的繁体ttf字体。可是奇怪的问题来了,用了繁体ttf字体后输入繁体字不显示,反而输入简体字它自动转成繁体字了?我擦,搞了半天原来策划找的ttf字体格式有问题。策划搞来了个繁体的ttf格式是GB12345,GB12345只会把简体汉字转成繁体汉字,给它繁体字它反而不认识。。如果项目中用的全都是简体汉字,那么用GB1转载 2015-03-16 08:27:06 · 1912 阅读 · 0 评论 -
unity3d 中实现猜拳游戏
using UnityEngine;using System.Collections;public class caiquan : MonoBehaviour { public Rect r1; public Rect r2; //public Texture t1; //public Texture t2; //public Te原创 2015-03-11 00:49:04 · 1156 阅读 · 0 评论 -
unity3d 中实现物体的移动
单例using UnityEngine;using System.Collections; public class IsRun { private static readonly IsRun tf=new IsRun(); private IsRun() {原创 2015-03-12 08:12:56 · 841 阅读 · 0 评论