@nodert-win11-22h2/windows.ui.composition.effects
Version:
Use the Windows.UI.Composition.Effects UWP API directly from Node.js
23 lines (18 loc) • 692 B
JavaScript
_SceneLightingEffectReflectanceModel = function () {
this.blinnPhong = 0;
this.physicallyBasedBlinnPhong = 1;
}
exports.SceneLightingEffectReflectanceModel = new _SceneLightingEffectReflectanceModel();
SceneLightingEffect = (function () {
var cls = function SceneLightingEffect() {
this.name = new String();
this.specularShine = new Number();
this.specularAmount = new Number();
this.normalMapSource = new Object();
this.diffuseAmount = new Number();
this.ambientAmount = new Number();
this.reflectanceModel = new SceneLightingEffectReflectanceModel();
};
return cls;
}) ();
exports.SceneLightingEffect = SceneLightingEffect;