03 2017 档案

游戏类书籍
摘要:游戏相关: 通用技术: 阅读全文

posted @ 2017-03-31 19:33 void87 阅读(619) 评论(0) 推荐(0)

Behavior Designer 学习
摘要:http://www.opsive.com/ 简单Demo Sequence Selector Chase Enemy enemy:player: 阅读全文

posted @ 2017-03-24 18:46 void87 阅读(309) 评论(0) 推荐(0)

Lua 程序设计 (Roberto,Ierusalimschy 著)
该文被密码保护。

posted @ 2017-03-24 15:11 void87 阅读(2049) 评论(0) 推荐(1)

Unity 3D UI Essentials 学习
该文被密码保护。

posted @ 2017-03-23 14:42 void87 阅读(265) 评论(0) 推荐(0)

Complete Physics Platformer Kit 学习
摘要:1 using UnityEngine; 2 3 /// <summary> 4 /// 摄像机跟随玩家 5 /// </summary> 6 public class CameraFollow : MonoBehaviour 7 { 8 /// <summary> 9 /// 目标 10 /// 阅读全文

posted @ 2017-03-20 23:39 void87 阅读(302) 评论(0) 推荐(0)

Surface go 相关
摘要:EasyUEFI surface go 无线网卡驱动 QCA6174 https://github.com/lordsaibat/wireless_surface_linux_drivers sudo chmod -R 777 /lib/firmware/ath10k 更换国内源 sudo chmo 阅读全文

posted @ 2017-03-19 16:48 void87 阅读(431) 评论(0) 推荐(0)

unity3d常用组件及分析
该文被密码保护。

posted @ 2017-03-15 12:57 void87 阅读(5550) 评论(0) 推荐(1)

Unity3D用户手册 学习
摘要: 阅读全文

posted @ 2017-03-14 20:37 void87 阅读(341) 评论(0) 推荐(0)

Match 3 小项目学习
摘要:1 using UnityEngine; 2 using System.Collections; 3 using Holoville.HOTween; 4 5 /// <summary> 6 /// 游戏逻辑 7 /// </summary> 8 public class Main:MonoBeha 阅读全文

posted @ 2017-03-14 18:02 void87 阅读(294) 评论(0) 推荐(0)

猫跳窗户 学习
摘要:1 using UnityEngine; 2 using System.Collections; 3 4 /// <summary> 5 /// 镜头控制 6 /// </summary> 7 public class CameraControl : MonoBehaviour { 8 9 /// 阅读全文

posted @ 2017-03-13 22:58 void87 阅读(272) 评论(0) 推荐(0)

俄罗斯方块 学习
摘要:1 using UnityEngine; 2 using System.Collections; 3 4 /// <summary> 5 /// 网格 6 /// </summary> 7 public class Grid : MonoBehaviour { 8 9 /// <summary> 1 阅读全文

posted @ 2017-03-13 17:44 void87 阅读(244) 评论(0) 推荐(0)

S老师 破坏神学习
摘要:代码质量不高 就不整理了 发上来留个纪念 表示自己写过了 数据库:MySQL,服务端:PhotonServer 视频:https://pan.baidu.com/s/1i4ROaRr 客户端:https://pan.baidu.com/s/1bDPiI6 服务端:https://pan.baidu. 阅读全文

posted @ 2017-03-12 23:00 void87 阅读(357) 评论(0) 推荐(0)

Unity3D协同函数与异步加载功能实战 学习
摘要: 阅读全文

posted @ 2017-03-12 20:11 void87 阅读(736) 评论(0) 推荐(0)

L老师 Shader编程教程 学习
摘要:1 Shader "VoidGame/FixedShader" { 2 Properties{ 3 //颜色 4 _Color("Color",Color)=(1,1,1,1) 5 //环境光 6 _Ambient("Ambient",Color)=(0.3,0.3,0.3,0.3) 7 //高光反 阅读全文

posted @ 2017-03-08 20:37 void87 阅读(1137) 评论(0) 推荐(0)

AI 学习
摘要:极简状态机: 1 /* 2 脚本名称: 3 脚本作者: 4 建立时间: 5 脚本功能: 6 版本号: 7 */ 8 using UnityEngine; 9 using System.Collections; 10 11 namespace VoidGame { 12 13 public class 阅读全文

posted @ 2017-03-08 14:27 void87 阅读(330) 评论(0) 推荐(0)

Unity 游戏性能优化 学习
摘要:优化误区 阅读全文

posted @ 2017-03-07 16:22 void87 阅读(299) 评论(0) 推荐(0)

常用网站
摘要:UML: http://www.uml-diagrams.org/ UML图 CG: http://http.developer.nvidia.com/Cg/fp20.html http://http.developer.nvidia.com/Cg/Cg_language.html 资源网站: ht 阅读全文

posted @ 2017-03-07 15:05 void87 阅读(266) 评论(0) 推荐(0)

Unity3d插件开发与SDK对接实战 学习
摘要:c++: 注意x86/x64,vs2015. 1 #include "stdafx.h" 2 3 4 extern "C" 5 { 6 int Add(int a, int b) { 7 return a + b; 8 } 9 } 1 LIBRARY "TestPlugin" 2 3 EXPORTS 阅读全文

posted @ 2017-03-07 11:02 void87 阅读(571) 评论(0) 推荐(0)

切水果 学习
摘要:1 using UnityEngine; 2 using System.Collections; 3 4 /// <summary> 5 /// 水果 6 /// </summary> 7 public class FruitDispenser : MonoBehaviour { 8 9 /// < 阅读全文

posted @ 2017-03-06 17:11 void87 阅读(592) 评论(0) 推荐(0)

贪吃蛇 学习
摘要:1 using UnityEngine; 2 using System.Collections; 3 4 /// <summary> 5 /// Flash 6 /// </summary> 7 public class Flash : MonoBehaviour { 8 9 /// <summar 阅读全文

posted @ 2017-03-06 16:50 void87 阅读(292) 评论(0) 推荐(0)

S老师 打飞机 学习
摘要:1 using UnityEngine; 2 using System.Collections; 3 4 /// <summary> 5 /// 奖励 6 /// </summary> 7 public class Award : MonoBehaviour { 8 9 public int typ 阅读全文

posted @ 2017-03-06 16:40 void87 阅读(601) 评论(0) 推荐(0)

S老师 Top-Down RPG Starter Kit 学习
摘要:character creation 1 using UnityEngine; 2 using System.Collections; 3 4 public class CharacterCreation : MonoBehaviour { 5 6 public GameObject[] chara 阅读全文

posted @ 2017-03-06 15:45 void87 阅读(395) 评论(0) 推荐(0)

Unity API 解析 (陈泉宏著)
该文被密码保护。

posted @ 2017-03-06 09:51 void87 阅读(2754) 评论(0) 推荐(0)

导航