通过Unity3d创建二维码
在如今信息化发展飞速的世界中二维码 也越来越火,
大街小巷随处可见 ”扫一扫“,
当然游戏里面加入二维码也不是什么稀罕事了 ,
言归正传,到底如何在unity3d中实现?那让我们一起看看吧
运行效果如下:
第一步:下载ZXing.Net.0.14.0.0,下载地址为http://zxingnet.codeplex.com/
第二步:解压下好的文件。
第三步:打开,然后找到其中的unity文件夹并打开。
第四步:将文件夹内的zxing.unity.dll,放到Unity的工程内即可。
第五步:代码编写。
代码 QR_Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
using
UnityEngine;
using
System.Collections;
using
ZXing;
using
ZXing.QrCode;
public
class
QR_Code: MonoBehaviour
{
public
Texture2D encoded;
public
string
Lastresult;
void
Start ()
{
encoded =
new
Texture2D(256, 256);
Lastresult =
"http://www.google.com"
; //自己的地址 ,测试用的谷歌
}
private
static
Color32[] Encode(
string
textForEncoding,
int
width,
int
height)
{
var writer =
new
BarcodeWriter
{
Format = BarcodeFormat.QR_CODE,
Options =
new
QrCodeEncodingOptions
{
Height = height,
Width = width
}
};
return
writer.Write(textForEncoding);
}
void
Update ()
{
var textForEncoding = Lastresult;
if
(textForEncoding !=
null
)
{
var color32 = Encode(textForEncoding, encoded.width, encoded.height);
encoded.SetPixels32(color32);
encoded.Apply();
}
}
void
OnGUI()
{
GUI.DrawTexture(
new
Rect(100, 100,256,256), encoded);
}
}
|
6.代码写好以后,将脚本挂在一个空物体上、运行、即可生成二维码。