forked from cocos/cocos-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel-renderer.ts
125 lines (107 loc) · 3.94 KB
/
model-renderer.ts
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
Copyright (c) 2022-2023 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 documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
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.
*/
import {
ccclass, serializable, tooltip, type, disallowAnimation,
} from 'cc.decorator';
import { scene } from '../render-scene';
import { Layers } from '../scene-graph/layers';
import { Renderer } from './renderer';
import { CCBoolean, cclegacy, _decorator } from '../core';
import { Model, SubModel } from '../render-scene/scene';
import { isEnableEffect } from '../rendering/define';
import { Root } from '../root';
import { getPhaseID } from '../rendering/pass-phase';
let _phaseID = getPhaseID('specular-pass');
function getSkinPassIndex (subModel: SubModel): number {
const passes = subModel.passes;
const r = cclegacy.rendering;
if (isEnableEffect()) _phaseID = r.getPhaseID(r.getPassID('specular-pass'), 'default');
for (let k = 0; k < passes.length; k++) {
if (((!r || !r.enableEffectImport) && passes[k].phase === _phaseID)
|| (isEnableEffect() && passes[k].phaseID === _phaseID)) {
return k;
}
}
return -1;
}
/**
* @en Base class for all rendering components containing model.
* @zh 所有包含 model 的渲染组件基类。
*/
@ccclass('cc.ModelRenderer')
export class ModelRenderer extends Renderer {
constructor () {
super();
}
/**
* @en The visibility which will be applied to the committed models.
* @zh 应用于所有提交渲染的 Model 的可见性
*/
get visibility (): number {
return this._visFlags;
}
set visibility (val) {
this._visFlags = val;
this._onVisibilityChange(val);
}
/**
* @en The priority which will be applied to the committed models.(Valid only in transparent queues)
* @zh 应用于所有提交渲染的 Model 的排序优先级(只在半透明渲染队列中起效)
*/
get priority (): number {
return this._priority;
}
set priority (val) {
if (val === this._priority) return;
this._priority = val;
this._updatePriority();
}
@serializable
protected _visFlags = Layers.Enum.NONE;
protected _models: scene.Model[] = [];
protected _priority = 0;
/**
* @zh 收集组件中的 models
* @en Collect the models in this component.
* @deprecated since v3.5.0, this is an engine private interface that will be removed in the future.
*/
public _collectModels (): scene.Model[] {
return this._models;
}
protected onEnable (): void {
this._updatePriority();
}
protected _attachToScene (): void {
}
/**
* @engineInternal
*/
public _detachFromScene (): void {
}
protected _onVisibilityChange (val): void {
}
protected _updatePriority (): void {
if (this._models.length > 0) {
for (let i = 0; i < this._models.length; i++) {
this._models[i].priority = this._priority;
}
}
}
}