mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-07 08:09:13 +08:00
155 lines
5.0 KiB
TypeScript
155 lines
5.0 KiB
TypeScript
/*
|
|
Copyright (c) 2020 Xiamen Yaji Software Co., Ltd.
|
|
|
|
https://www.cocos.com/
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated engine source code (the "Software"), a limited,
|
|
worldwide, royalty-free, non-assignable, revocable and non-exclusive license
|
|
to use Cocos Creator solely to develop games on your target platforms. You shall
|
|
not use Cocos Creator software for developing other software or tools that's
|
|
used for developing games. You are not granted to publish, distribute,
|
|
sublicense, and/or sell copies of Cocos Creator.
|
|
|
|
The software or tools in this License Agreement are licensed, not sold.
|
|
Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
|
|
import { markAsWarning, removeProperty, replaceProperty } from '../../core/utils';
|
|
import { UIComponent } from './ui-component';
|
|
import { UITransform } from './ui-transform';
|
|
import { Renderable2D } from './renderable-2d';
|
|
import { Canvas } from './canvas';
|
|
import { js } from '../../core/utils/js';
|
|
import { legacyCC } from '../../core/global-exports';
|
|
import { Color } from '../../core/math/color';
|
|
|
|
removeProperty(UIComponent.prototype, 'UIComponent', [
|
|
{
|
|
name: '_visibility',
|
|
},
|
|
{
|
|
name: 'setVisibility',
|
|
},
|
|
]);
|
|
|
|
removeProperty(Renderable2D.prototype, 'Renderable2D.prototype', [
|
|
{
|
|
name: 'srcBlendFactor',
|
|
},
|
|
{
|
|
name: 'dstBlendFactor',
|
|
},
|
|
]);
|
|
|
|
replaceProperty(Canvas.prototype, 'Canvas.prototype', [
|
|
{
|
|
name: 'camera',
|
|
newName: 'cameraComponent.camera',
|
|
customGetter () {
|
|
// @ts-expect-error deprecation method
|
|
return this._cameraComponent.camera;
|
|
},
|
|
},
|
|
{
|
|
name: 'clearFlag',
|
|
newName: 'cameraComponent.clearFlags',
|
|
customGetter () {
|
|
// @ts-expect-error deprecation method
|
|
return this._cameraComponent ? this._cameraComponent.clearFlags : 0;
|
|
},
|
|
customSetter (val) {
|
|
// @ts-expect-error deprecation method
|
|
if (this._cameraComponent) this._cameraComponent.clearFlags = val;
|
|
},
|
|
},
|
|
{
|
|
name: 'color',
|
|
newName: 'cameraComponent.clearColor',
|
|
customGetter () {
|
|
// @ts-expect-error deprecation method
|
|
return this._cameraComponent ? this._cameraComponent.clearColor : Color.BLACK;
|
|
},
|
|
customSetter (val) {
|
|
// @ts-expect-error deprecation method
|
|
if (this._cameraComponent) this._cameraComponent.clearColor = val;
|
|
},
|
|
},
|
|
{
|
|
name: 'priority',
|
|
newName: 'cameraComponent.priority',
|
|
customGetter () {
|
|
// @ts-expect-error deprecation method
|
|
return this._cameraComponent ? this._cameraComponent.priority : 0;
|
|
},
|
|
customSetter (val: number) {
|
|
// @ts-expect-error deprecation method
|
|
if (this._cameraComponent) this._cameraComponent.priority = val;
|
|
},
|
|
},
|
|
{
|
|
name: 'targetTexture',
|
|
newName: 'cameraComponent.targetTexture',
|
|
customGetter () {
|
|
// @ts-expect-error deprecation method
|
|
return this._cameraComponent ? this._cameraComponent.targetTexture : null;
|
|
},
|
|
customSetter (value) {
|
|
// @ts-expect-error deprecation method
|
|
if (this._cameraComponent) this._cameraComponent.targetTexture = value;
|
|
},
|
|
},
|
|
{
|
|
name: 'visibility',
|
|
newName: 'cameraComponent.visibility',
|
|
customGetter () {
|
|
// @ts-expect-error deprecation method
|
|
return this._cameraComponent ? this._cameraComponent.visibility : 0;
|
|
},
|
|
},
|
|
]);
|
|
|
|
markAsWarning(UITransform.prototype, 'UITransform.prototype', [
|
|
{
|
|
name: 'priority',
|
|
suggest: `Please use setSiblingIndex to change index of the current node in its parent's children array.`,
|
|
},
|
|
]);
|
|
|
|
/**
|
|
* Alias of [[UITransform]]
|
|
* @deprecated Since v1.2
|
|
*/
|
|
export { UITransform as UITransformComponent };
|
|
legacyCC.UITransformComponent = UITransform;
|
|
js.setClassAlias(UITransform, 'cc.UITransformComponent');
|
|
|
|
/**
|
|
* Alias of [[Renderable2D]]
|
|
* @deprecated Since v1.2
|
|
*/
|
|
export { Renderable2D as RenderComponent };
|
|
/**
|
|
* Alias of [[Renderable2D]]
|
|
* @deprecated Since v3.0
|
|
*/
|
|
export { Renderable2D as UIRenderable };
|
|
js.setClassAlias(Renderable2D, 'cc.RenderComponent');
|
|
|
|
/**
|
|
* Alias of [[Canvas]]
|
|
* @deprecated Since v1.2
|
|
*/
|
|
export { Canvas as CanvasComponent };
|
|
legacyCC.CanvasComponent = Canvas;
|
|
js.setClassAlias(Canvas, 'cc.CanvasComponent');
|