@nodert-win10-au/windows.ui.composition.effects
Version:
Use the Windows.UI.Composition.Effects UWP API directly from Node.js
16 lines (12 loc) • 407 B
JavaScript
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();
};
return cls;
}) ();
exports.SceneLightingEffect = SceneLightingEffect;