mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 07:21:07 +00:00
10 lines
260 B
JavaScript
10 lines
260 B
JavaScript
|
(function(){
|
||
|
if(!cc.Sprite.__assembler__.Sliced3D) return;
|
||
|
|
||
|
let proto = cc.Sprite.__assembler__.Sliced3D.prototype;
|
||
|
let nativeProto = renderer.SlicedSprite3D.prototype;
|
||
|
|
||
|
Object.assign(proto, {
|
||
|
_extendNative: nativeProto.ctor
|
||
|
})
|
||
|
})()
|