摘要: Handheld.Vibrate(); //震动效果using UnityEngine;using System.Collections;public class r : MonoBehaviour { public float speed = 200.0f; float oy = 0... 阅读全文
posted @ 2015-06-02 16:13 Cvjar 阅读(325) 评论(0) 推荐(0)
摘要: 分割Png图片:Texture Type : Sprite (2D and UI) Sprite Mode: Multiple Sprite Editor - Slice - Applyhttp://blog.1vr.cn/?p=1422 阅读全文
posted @ 2015-06-01 21:29 Cvjar 阅读(202) 评论(0) 推荐(0)
摘要: Shader "Custom/cvjarEarth" { Properties{ _MainTex("myTexture", 2D) = "white"{} _Cloud("mycolor", 2D) ="white"{} } S... 阅读全文
posted @ 2015-05-29 16:39 Cvjar 阅读(269) 评论(0) 推荐(0)
摘要: Shader "Custom/LogoShader" { Properties { _MainTex ("Texture", 2D) = "white" {} } SubShader { Tags {"Queue"="Transparent" "Igno... 阅读全文
posted @ 2015-05-29 16:38 Cvjar 阅读(447) 评论(0) 推荐(0)
摘要: Shader "Custom/Texgun" { Properties {// _MainTex ("Base (RGB)", 2D) = "white" {TexGen SphereMap} //镜反射,水晶球// _MainTex ("Base (R... 阅读全文
posted @ 2015-05-29 16:37 Cvjar 阅读(176) 评论(0) 推荐(0)
摘要: Shader "Custom/multipass" { Properties { _MainTex ("Base (RGB)", 2D) = "white" {} } SubShader { Tags { "RenderType"="Opaque" } ... 阅读全文
posted @ 2015-05-29 16:31 Cvjar 阅读(233) 评论(0) 推荐(0)
摘要: Hotween:http://www.cnphp6.com/archives/45174Dotween(momo):http://www.xuanyusong.com/archives/3330 http://robertpenner.com/easing/easing_demo.h... 阅读全文
posted @ 2015-05-26 12:29 Cvjar 阅读(176) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.IO;using System.Xml.Linq;namespace rooxml{ public class main { ... 阅读全文
posted @ 2015-05-23 21:07 Cvjar 阅读(154) 评论(0) 推荐(0)
摘要: 下载:http://ant.apache.org/bindownload.cgiMac安装ant:http://blog.csdn.net/crazybigfish/article/details/18215439Linux安装ant:http://www.cnblogs.com/sell/arch... 阅读全文
posted @ 2015-05-23 19:15 Cvjar 阅读(112) 评论(0) 推荐(0)
摘要: 1.编译: javac xxx.java2.执行:java xxx3.打包: 新建manifest 添加Main-Class: xxx //冒号后面空格,回车换行 jar cvfm x.jar manifest xxx.class4.执行jar包: java -jar x.jarhttp:/... 阅读全文
posted @ 2015-05-23 17:39 Cvjar 阅读(394) 评论(0) 推荐(0)