日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

cocos creator 数组_CoCos Creator中的数据类型

發布時間:2023/12/10 编程问答 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 cocos creator 数组_CoCos Creator中的数据类型 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

常用到的基本數據類型有Integer、String、Vec2、Color,下面的是它們最基本的使用展示:

properties: {

myNumber:{

default:0,

type:cc.Integer,

},

myString:{

default:'HaHa',

},

myVec2:{

default:cc.Vec2.ZERO,

},

myColor:{

default:cc.Color.RED,

},

myOtherNumber:0,

myOtherString:'BBB',

myOtherVec2:cc.Vec2.ONE,

myOtherColor:cc.Color.WHITE,

},

組件類型:

properties: {

myNode:{

default:null,

type:cc.Node,

},

mySprite:{

default:null,

type:cc.Sprite,

},

myLabel:{

default:null,

type:cc.Label,

},

myComponent:{

default:null,

type:MyCustomComponent,

},

mySprite:{

default:null,

type:cc.Sprite,

},

mySpriteFrame:{

default:null,

type:cc.SpriteFrame,

},

mySpriteAtlas:{

default:null,

type:cc.SpriteAtlas,

},

myPrefab:{

default:null,

type:cc.Prefab,

},

myAudioClip:{

default:null,

type:cc.AudioClip,

},

},

這其中的MyCustomComponent是自定義的類型。首先我們在Canvas節點下新建一個空節點,命名為mycomponent,在節點上添加一個用戶腳本文件,取名為MyCustomComponent。在腳本中需要使用的時候,使用const MyCustomComponent=require('MyCustomComponent'),賦值的時候則把對應的那個mycomponent節點拖進去就行了。

我們在創建String類型的數據的時候,如果不想在編輯器中看到的話,則可以將visible設置為false,這樣String類型的數據只能在腳本中進行修改操作。

cc.Class({

extends: cc.Component,

properties: {

nonSeriableText:{

default:'',

visible:false,

},

seriableText:'',

mLabel1:{

default:null,

type:cc.Label,

},

mLabel2:{

default:null,

type:cc.Label,

},

},

// LIFE-CYCLE CALLBACKS:

onLoad () {

this.nonSeriableText='Can only set in script';

this.mLabel1.string=this.nonSeriableText;

this.mLabel2.string=this.seriableText;

},

start () {

},

update (dt) {},

});

總結

以上是生活随笔為你收集整理的cocos creator 数组_CoCos Creator中的数据类型的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。