mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2024-12-26 11:48:29 +00:00
16 lines
419 B
JavaScript
16 lines
419 B
JavaScript
|
"use strict";
|
||
|
Vue.component("cc-tiled-layer", {
|
||
|
dependencies: ["packages://inspector/share/blend.js"],
|
||
|
template: '\n <ui-prop\n v-prop="target.cullingLayer"\n :multi-values="multi"\n ></ui-prop> <cc-array-prop :target.sync="target.materials"></cc-array-prop>\n\n ',
|
||
|
props: {
|
||
|
target: {
|
||
|
twoWay: !0,
|
||
|
type: Object
|
||
|
},
|
||
|
multi: {
|
||
|
twoWay: !0,
|
||
|
type: Boolean
|
||
|
}
|
||
|
}
|
||
|
});
|