» 2017 » April の記事

~ unity 減少字體容量既方法 ~

connie 2017.04.21 | unity | | No Comments

如只會顯示1234567890

~ fix unity 3dText Always on top problem ~

connie 2017.04.19 | unity | | No Comments

Fixing the 3d text always on top layer problem,

左邊係我地常出現的情況,右手邊係我地想要既情況

以下方法不能使用預設FONT,要import 字型入去,我用勘亭流做例子

將字型IMPORT入去ASSET內,在inspector的character 轉成unicode,再Create editable copy

甘生了一個字型texture出來

之後在ASSET Folder Create 新既shader

Shader "GUI/3D Text Shader" {
	Properties{
		_MainTex("Font Texture", 2D) = "white" {}
	_Color("Text Color", Color) = (1,1,1,1)
	}

		SubShader{
		Tags{ "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" }
		Lighting Off Cull Off ZWrite Off Fog{ Mode Off }
		Blend SrcAlpha OneMinusSrcAlpha
		Pass{
		Color[_Color]
		SetTexture[_MainTex]{
		combine primary, texture * primary
	}
	}
	}
}

之後在ASSET Folder Create 新既Material

New Material 內Shader部份用GUI->3D Text shader 即係剛剛加入的Shader

然後Texture 加入剛剛做出來的Font Texture

然後去3D Text Object , Mesg Renderer內materials 由Font Texture 改為new material,甘就可以了

~ Fix the problem of unity textmesh blurry ~

connie 2017.04.12 | unity | | No Comments

1491965784579

Set the character Size to 0.03 and increase the Font size

1491965592307
1491965603898

~ Completely remove mariadb ~

connie 2017.04.05 | centos, mariadb | | No Comments
yum remove mariadb mariadb-server

rm -rf /var/lib/mysql 

rm /etc/my.cnf

Optional step: rm ~/.my.cnf

 

~ Visual Studio C# Show line Number ~

connie 2017.04.03 | Visual Studio | | No Comments

Go to options->Text Editor->C#->Setting(Show Line number)

1490246361695 1490246335934

~ Centos install node.js ~

connie 2017.04.01 | centos, node.js | | No Comments
sudo yum install nodejs
node --version

npm install -g npm-autoinit
npm config set onload-script npm-autoinit/autoinit
npm install socket.io

 

| HOME |

Smiley face

April 2017
S M T W T F S
 1
2345678
9101112131415
16171819202122
23242526272829
30