CocosCreator-Shader-Effect-.../assets/scripts/GrayEffectScene.ts

60 lines
1.8 KiB
TypeScript
Raw Permalink Normal View History

2020-01-03 04:19:36 +00:00
const { ccclass, property } = cc._decorator;
@ccclass
export default class GrayEffectScene extends cc.Component {
private _grayLevelSlider: cc.Slider = null;
private _grayLevelSliderLabel: cc.Label = null;
private _examplesParentNode: cc.Node = null;
onLoad() {
this._grayLevelSlider = cc.find("Canvas/Content/Sliders/GrayLevelSlider/Slider").getComponent(cc.Slider);
this._grayLevelSliderLabel = cc.find("Canvas/Content/Sliders/GrayLevelSlider/ValueLabel").getComponent(cc.Label);
this._examplesParentNode = cc.find("Canvas/Content/Examples");
}
onEnable() {
this._grayLevelSlider.node.on("slide", this._onSliderChanged, this);
}
onDisable() {
this._grayLevelSlider.node.off("slide", this._onSliderChanged, this);
}
start() {
this._onSliderChanged();
}
private _onSliderChanged() {
this._grayLevelSliderLabel.string = `${this._grayLevelSlider.progress.toFixed(2)}`;
// 更新材质
this._updateRenderComponentMaterial({
2020-01-03 06:20:31 +00:00
grayLevel: this._grayLevelSlider.progress
2020-01-03 04:19:36 +00:00
});
}
/**
*
*
* 1.
* 2. unitform
* 3.
*/
private _updateRenderComponentMaterial(param: {
/**
* [0.0, 1.0] 1.0
*/
2020-01-03 06:20:31 +00:00
grayLevel: number;
2020-01-03 04:19:36 +00:00
}) {
this._examplesParentNode.children.forEach(childNode => {
childNode.getComponents(cc.RenderComponent).forEach(renderComponent => {
let material: cc.Material = renderComponent.getMaterial(0);
2020-01-03 06:20:31 +00:00
material.setProperty("grayLevel", param.grayLevel);
2020-01-03 04:19:36 +00:00
renderComponent.setMaterial(0, material);
});
});
}
}