@dcl/ecs 7.9.3-16572655107.commit-d0b0754 → 7.9.3-16574576809.commit-c0a4156
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/generated/component-names.gen.js +0 -1
- package/dist/components/generated/global.gen.d.ts +0 -2
- package/dist/components/generated/global.gen.js +0 -1
- package/dist/components/generated/index.gen.d.ts +0 -4
- package/dist/components/generated/index.gen.js +0 -5
- package/dist/components/generated/pb/decentraland/sdk/components/avatar_shape.gen.d.ts +2 -0
- package/dist/components/generated/pb/decentraland/sdk/components/avatar_shape.gen.js +10 -0
- package/dist/components/generated/pb/decentraland/sdk/components/virtual_camera.gen.d.ts +0 -3
- package/dist/components/generated/pb/decentraland/sdk/components/virtual_camera.gen.js +1 -10
- package/dist/components/index.d.ts +0 -2
- package/dist/components/index.js +0 -3
- package/dist/components/types.d.ts +0 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +0 -1
- package/dist-cjs/components/generated/component-names.gen.js +0 -1
- package/dist-cjs/components/generated/global.gen.d.ts +0 -2
- package/dist-cjs/components/generated/global.gen.js +1 -2
- package/dist-cjs/components/generated/index.gen.d.ts +0 -4
- package/dist-cjs/components/generated/index.gen.js +1 -7
- package/dist-cjs/components/generated/pb/decentraland/sdk/components/avatar_shape.gen.d.ts +2 -0
- package/dist-cjs/components/generated/pb/decentraland/sdk/components/avatar_shape.gen.js +10 -0
- package/dist-cjs/components/generated/pb/decentraland/sdk/components/virtual_camera.gen.d.ts +0 -3
- package/dist-cjs/components/generated/pb/decentraland/sdk/components/virtual_camera.gen.js +1 -10
- package/dist-cjs/components/index.d.ts +0 -2
- package/dist-cjs/components/index.js +1 -5
- package/dist-cjs/components/types.d.ts +0 -1
- package/dist-cjs/index.d.ts +1 -2
- package/dist-cjs/index.js +1 -2
- package/package.json +2 -2
- package/dist/components/extended/LightSource.d.ts +0 -25
- package/dist/components/extended/LightSource.js +0 -22
- package/dist/components/generated/LightSource.gen.d.ts +0 -1
- package/dist/components/generated/LightSource.gen.js +0 -25
- package/dist/components/generated/pb/decentraland/sdk/components/light_source.gen.d.ts +0 -62
- package/dist/components/generated/pb/decentraland/sdk/components/light_source.gen.js +0 -192
- package/dist-cjs/components/extended/LightSource.d.ts +0 -25
- package/dist-cjs/components/extended/LightSource.js +0 -26
- package/dist-cjs/components/generated/LightSource.gen.d.ts +0 -1
- package/dist-cjs/components/generated/LightSource.gen.js +0 -28
- package/dist-cjs/components/generated/pb/decentraland/sdk/components/light_source.gen.d.ts +0 -62
- package/dist-cjs/components/generated/pb/decentraland/sdk/components/light_source.gen.js +0 -198
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { LightSource } from '../generated/index.gen';
|
|
2
|
-
const LightSourceHelper = {
|
|
3
|
-
Point(point) {
|
|
4
|
-
return {
|
|
5
|
-
$case: 'point',
|
|
6
|
-
point
|
|
7
|
-
};
|
|
8
|
-
},
|
|
9
|
-
Spot(spot) {
|
|
10
|
-
return {
|
|
11
|
-
$case: 'spot',
|
|
12
|
-
spot
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
export function defineLightSourceComponent(engine) {
|
|
17
|
-
const theComponent = LightSource(engine);
|
|
18
|
-
return {
|
|
19
|
-
...theComponent,
|
|
20
|
-
Type: LightSourceHelper
|
|
21
|
-
};
|
|
22
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { PBLightSource } from './pb/decentraland/sdk/components/light_source.gen';
|
|
2
|
-
/**
|
|
3
|
-
* @internal
|
|
4
|
-
*/
|
|
5
|
-
export const LightSourceSchema = {
|
|
6
|
-
COMPONENT_ID: 1079,
|
|
7
|
-
serialize(value, builder) {
|
|
8
|
-
const writer = PBLightSource.encode(value);
|
|
9
|
-
const buffer = new Uint8Array(writer.finish(), 0, writer.len);
|
|
10
|
-
builder.writeBuffer(buffer, false);
|
|
11
|
-
},
|
|
12
|
-
deserialize(reader) {
|
|
13
|
-
return PBLightSource.decode(reader.buffer(), reader.remainingBytes());
|
|
14
|
-
},
|
|
15
|
-
create() {
|
|
16
|
-
// TODO: this is a hack.
|
|
17
|
-
return PBLightSource.decode(new Uint8Array());
|
|
18
|
-
},
|
|
19
|
-
jsonSchema: {
|
|
20
|
-
type: "object",
|
|
21
|
-
properties: {},
|
|
22
|
-
serializationType: "protocol-buffer",
|
|
23
|
-
protocolBuffer: "PBLightSource"
|
|
24
|
-
}
|
|
25
|
-
};
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import _m0 from "protobufjs/minimal";
|
|
2
|
-
import { Color3 } from "../../common/colors.gen";
|
|
3
|
-
import { TextureUnion } from "../../common/texture.gen";
|
|
4
|
-
/**
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export interface PBLightSource {
|
|
8
|
-
/** default = true, whether the lightSource is active or not. */
|
|
9
|
-
active?: boolean | undefined;
|
|
10
|
-
/** default = Color.white, the tint of the light, in RGB format where each component is a floating point value with a range from 0 to 1. */
|
|
11
|
-
color?: Color3 | undefined;
|
|
12
|
-
/** default = 250, ranges from 1 (dim) to 100,000 (very bright), expressed in Lumens for Point and Spot. */
|
|
13
|
-
intensity?: number | undefined;
|
|
14
|
-
/** default = 0, how far the light travels, expressed in meters. If left at 0 will be computed automatically */
|
|
15
|
-
range?: number | undefined;
|
|
16
|
-
/** default = false, whether the light casts shadows or not. */
|
|
17
|
-
shadow?: boolean | undefined;
|
|
18
|
-
/** Texture mask through which shadows are cast to simulate caustics, soft shadows, and light shapes such as light entering from a window. */
|
|
19
|
-
shadowMaskTexture?: TextureUnion | undefined;
|
|
20
|
-
type?: {
|
|
21
|
-
$case: "point";
|
|
22
|
-
point: PBLightSource_Point;
|
|
23
|
-
} | {
|
|
24
|
-
$case: "spot";
|
|
25
|
-
spot: PBLightSource_Spot;
|
|
26
|
-
} | undefined;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
export interface PBLightSource_Point {
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* @public
|
|
35
|
-
*/
|
|
36
|
-
export interface PBLightSource_Spot {
|
|
37
|
-
/** default = 21.8. Inner angle can't be higher than outer angle, otherwise will default to same value. Min value is 0. Max value is 179. */
|
|
38
|
-
innerAngle?: number | undefined;
|
|
39
|
-
/** default = 30. Outer angle can't be lower than inner angle, otherwise will inner angle will be set to same value. Max value is 179. */
|
|
40
|
-
outerAngle?: number | undefined;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* @public
|
|
44
|
-
*/
|
|
45
|
-
export declare namespace PBLightSource {
|
|
46
|
-
function encode(message: PBLightSource, writer?: _m0.Writer): _m0.Writer;
|
|
47
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
|
-
export declare namespace PBLightSource_Point {
|
|
53
|
-
function encode(_: PBLightSource_Point, writer?: _m0.Writer): _m0.Writer;
|
|
54
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Point;
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* @public
|
|
58
|
-
*/
|
|
59
|
-
export declare namespace PBLightSource_Spot {
|
|
60
|
-
function encode(message: PBLightSource_Spot, writer?: _m0.Writer): _m0.Writer;
|
|
61
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Spot;
|
|
62
|
-
}
|
|
@@ -1,192 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
import _m0 from "protobufjs/minimal";
|
|
3
|
-
import { Color3 } from "../../common/colors.gen";
|
|
4
|
-
import { TextureUnion } from "../../common/texture.gen";
|
|
5
|
-
const protobufPackageSarasa = "decentraland.sdk.components";
|
|
6
|
-
function createBasePBLightSource() {
|
|
7
|
-
return {
|
|
8
|
-
active: undefined,
|
|
9
|
-
color: undefined,
|
|
10
|
-
intensity: undefined,
|
|
11
|
-
range: undefined,
|
|
12
|
-
shadow: undefined,
|
|
13
|
-
shadowMaskTexture: undefined,
|
|
14
|
-
type: undefined,
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*/
|
|
20
|
-
export var PBLightSource;
|
|
21
|
-
(function (PBLightSource) {
|
|
22
|
-
function encode(message, writer = _m0.Writer.create()) {
|
|
23
|
-
if (message.active !== undefined) {
|
|
24
|
-
writer.uint32(8).bool(message.active);
|
|
25
|
-
}
|
|
26
|
-
if (message.color !== undefined) {
|
|
27
|
-
Color3.encode(message.color, writer.uint32(18).fork()).ldelim();
|
|
28
|
-
}
|
|
29
|
-
if (message.intensity !== undefined) {
|
|
30
|
-
writer.uint32(29).float(message.intensity);
|
|
31
|
-
}
|
|
32
|
-
if (message.range !== undefined) {
|
|
33
|
-
writer.uint32(37).float(message.range);
|
|
34
|
-
}
|
|
35
|
-
if (message.shadow !== undefined) {
|
|
36
|
-
writer.uint32(40).bool(message.shadow);
|
|
37
|
-
}
|
|
38
|
-
if (message.shadowMaskTexture !== undefined) {
|
|
39
|
-
TextureUnion.encode(message.shadowMaskTexture, writer.uint32(50).fork()).ldelim();
|
|
40
|
-
}
|
|
41
|
-
switch (message.type?.$case) {
|
|
42
|
-
case "point":
|
|
43
|
-
PBLightSource_Point.encode(message.type.point, writer.uint32(58).fork()).ldelim();
|
|
44
|
-
break;
|
|
45
|
-
case "spot":
|
|
46
|
-
PBLightSource_Spot.encode(message.type.spot, writer.uint32(66).fork()).ldelim();
|
|
47
|
-
break;
|
|
48
|
-
}
|
|
49
|
-
return writer;
|
|
50
|
-
}
|
|
51
|
-
PBLightSource.encode = encode;
|
|
52
|
-
function decode(input, length) {
|
|
53
|
-
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
54
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
55
|
-
const message = createBasePBLightSource();
|
|
56
|
-
while (reader.pos < end) {
|
|
57
|
-
const tag = reader.uint32();
|
|
58
|
-
switch (tag >>> 3) {
|
|
59
|
-
case 1:
|
|
60
|
-
if (tag !== 8) {
|
|
61
|
-
break;
|
|
62
|
-
}
|
|
63
|
-
message.active = reader.bool();
|
|
64
|
-
continue;
|
|
65
|
-
case 2:
|
|
66
|
-
if (tag !== 18) {
|
|
67
|
-
break;
|
|
68
|
-
}
|
|
69
|
-
message.color = Color3.decode(reader, reader.uint32());
|
|
70
|
-
continue;
|
|
71
|
-
case 3:
|
|
72
|
-
if (tag !== 29) {
|
|
73
|
-
break;
|
|
74
|
-
}
|
|
75
|
-
message.intensity = reader.float();
|
|
76
|
-
continue;
|
|
77
|
-
case 4:
|
|
78
|
-
if (tag !== 37) {
|
|
79
|
-
break;
|
|
80
|
-
}
|
|
81
|
-
message.range = reader.float();
|
|
82
|
-
continue;
|
|
83
|
-
case 5:
|
|
84
|
-
if (tag !== 40) {
|
|
85
|
-
break;
|
|
86
|
-
}
|
|
87
|
-
message.shadow = reader.bool();
|
|
88
|
-
continue;
|
|
89
|
-
case 6:
|
|
90
|
-
if (tag !== 50) {
|
|
91
|
-
break;
|
|
92
|
-
}
|
|
93
|
-
message.shadowMaskTexture = TextureUnion.decode(reader, reader.uint32());
|
|
94
|
-
continue;
|
|
95
|
-
case 7:
|
|
96
|
-
if (tag !== 58) {
|
|
97
|
-
break;
|
|
98
|
-
}
|
|
99
|
-
message.type = { $case: "point", point: PBLightSource_Point.decode(reader, reader.uint32()) };
|
|
100
|
-
continue;
|
|
101
|
-
case 8:
|
|
102
|
-
if (tag !== 66) {
|
|
103
|
-
break;
|
|
104
|
-
}
|
|
105
|
-
message.type = { $case: "spot", spot: PBLightSource_Spot.decode(reader, reader.uint32()) };
|
|
106
|
-
continue;
|
|
107
|
-
}
|
|
108
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
109
|
-
break;
|
|
110
|
-
}
|
|
111
|
-
reader.skipType(tag & 7);
|
|
112
|
-
}
|
|
113
|
-
return message;
|
|
114
|
-
}
|
|
115
|
-
PBLightSource.decode = decode;
|
|
116
|
-
})(PBLightSource || (PBLightSource = {}));
|
|
117
|
-
function createBasePBLightSource_Point() {
|
|
118
|
-
return {};
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* @public
|
|
122
|
-
*/
|
|
123
|
-
export var PBLightSource_Point;
|
|
124
|
-
(function (PBLightSource_Point) {
|
|
125
|
-
function encode(_, writer = _m0.Writer.create()) {
|
|
126
|
-
return writer;
|
|
127
|
-
}
|
|
128
|
-
PBLightSource_Point.encode = encode;
|
|
129
|
-
function decode(input, length) {
|
|
130
|
-
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
131
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
132
|
-
const message = createBasePBLightSource_Point();
|
|
133
|
-
while (reader.pos < end) {
|
|
134
|
-
const tag = reader.uint32();
|
|
135
|
-
switch (tag >>> 3) {
|
|
136
|
-
}
|
|
137
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
138
|
-
break;
|
|
139
|
-
}
|
|
140
|
-
reader.skipType(tag & 7);
|
|
141
|
-
}
|
|
142
|
-
return message;
|
|
143
|
-
}
|
|
144
|
-
PBLightSource_Point.decode = decode;
|
|
145
|
-
})(PBLightSource_Point || (PBLightSource_Point = {}));
|
|
146
|
-
function createBasePBLightSource_Spot() {
|
|
147
|
-
return { innerAngle: undefined, outerAngle: undefined };
|
|
148
|
-
}
|
|
149
|
-
/**
|
|
150
|
-
* @public
|
|
151
|
-
*/
|
|
152
|
-
export var PBLightSource_Spot;
|
|
153
|
-
(function (PBLightSource_Spot) {
|
|
154
|
-
function encode(message, writer = _m0.Writer.create()) {
|
|
155
|
-
if (message.innerAngle !== undefined) {
|
|
156
|
-
writer.uint32(77).float(message.innerAngle);
|
|
157
|
-
}
|
|
158
|
-
if (message.outerAngle !== undefined) {
|
|
159
|
-
writer.uint32(85).float(message.outerAngle);
|
|
160
|
-
}
|
|
161
|
-
return writer;
|
|
162
|
-
}
|
|
163
|
-
PBLightSource_Spot.encode = encode;
|
|
164
|
-
function decode(input, length) {
|
|
165
|
-
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
166
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
167
|
-
const message = createBasePBLightSource_Spot();
|
|
168
|
-
while (reader.pos < end) {
|
|
169
|
-
const tag = reader.uint32();
|
|
170
|
-
switch (tag >>> 3) {
|
|
171
|
-
case 9:
|
|
172
|
-
if (tag !== 77) {
|
|
173
|
-
break;
|
|
174
|
-
}
|
|
175
|
-
message.innerAngle = reader.float();
|
|
176
|
-
continue;
|
|
177
|
-
case 10:
|
|
178
|
-
if (tag !== 85) {
|
|
179
|
-
break;
|
|
180
|
-
}
|
|
181
|
-
message.outerAngle = reader.float();
|
|
182
|
-
continue;
|
|
183
|
-
}
|
|
184
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
185
|
-
break;
|
|
186
|
-
}
|
|
187
|
-
reader.skipType(tag & 7);
|
|
188
|
-
}
|
|
189
|
-
return message;
|
|
190
|
-
}
|
|
191
|
-
PBLightSource_Spot.decode = decode;
|
|
192
|
-
})(PBLightSource_Spot || (PBLightSource_Spot = {}));
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { IEngine, LastWriteWinElementSetComponentDefinition } from '../../engine';
|
|
2
|
-
import { PBLightSource_Point, PBLightSource_Spot, PBLightSource } from '../generated/index.gen';
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
*/
|
|
6
|
-
export interface LightSourceHelper {
|
|
7
|
-
/**
|
|
8
|
-
* @returns a Light Source type
|
|
9
|
-
*/
|
|
10
|
-
Point: (point: PBLightSource_Point) => PBLightSource['type'];
|
|
11
|
-
/**
|
|
12
|
-
* @returns a Light Source type
|
|
13
|
-
*/
|
|
14
|
-
Spot: (spot: PBLightSource_Spot) => PBLightSource['type'];
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @public
|
|
18
|
-
*/
|
|
19
|
-
export interface LightSourceComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBLightSource> {
|
|
20
|
-
/**
|
|
21
|
-
* LightSource helper with constructor
|
|
22
|
-
*/
|
|
23
|
-
Type: LightSourceHelper;
|
|
24
|
-
}
|
|
25
|
-
export declare function defineLightSourceComponent(engine: Pick<IEngine, 'defineComponentFromSchema'>): LightSourceComponentDefinitionExtended;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.defineLightSourceComponent = void 0;
|
|
4
|
-
const index_gen_1 = require("../generated/index.gen");
|
|
5
|
-
const LightSourceHelper = {
|
|
6
|
-
Point(point) {
|
|
7
|
-
return {
|
|
8
|
-
$case: 'point',
|
|
9
|
-
point
|
|
10
|
-
};
|
|
11
|
-
},
|
|
12
|
-
Spot(spot) {
|
|
13
|
-
return {
|
|
14
|
-
$case: 'spot',
|
|
15
|
-
spot
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
};
|
|
19
|
-
function defineLightSourceComponent(engine) {
|
|
20
|
-
const theComponent = (0, index_gen_1.LightSource)(engine);
|
|
21
|
-
return {
|
|
22
|
-
...theComponent,
|
|
23
|
-
Type: LightSourceHelper
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
exports.defineLightSourceComponent = defineLightSourceComponent;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LightSourceSchema = void 0;
|
|
4
|
-
const light_source_gen_1 = require("./pb/decentraland/sdk/components/light_source.gen");
|
|
5
|
-
/**
|
|
6
|
-
* @internal
|
|
7
|
-
*/
|
|
8
|
-
exports.LightSourceSchema = {
|
|
9
|
-
COMPONENT_ID: 1079,
|
|
10
|
-
serialize(value, builder) {
|
|
11
|
-
const writer = light_source_gen_1.PBLightSource.encode(value);
|
|
12
|
-
const buffer = new Uint8Array(writer.finish(), 0, writer.len);
|
|
13
|
-
builder.writeBuffer(buffer, false);
|
|
14
|
-
},
|
|
15
|
-
deserialize(reader) {
|
|
16
|
-
return light_source_gen_1.PBLightSource.decode(reader.buffer(), reader.remainingBytes());
|
|
17
|
-
},
|
|
18
|
-
create() {
|
|
19
|
-
// TODO: this is a hack.
|
|
20
|
-
return light_source_gen_1.PBLightSource.decode(new Uint8Array());
|
|
21
|
-
},
|
|
22
|
-
jsonSchema: {
|
|
23
|
-
type: "object",
|
|
24
|
-
properties: {},
|
|
25
|
-
serializationType: "protocol-buffer",
|
|
26
|
-
protocolBuffer: "PBLightSource"
|
|
27
|
-
}
|
|
28
|
-
};
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import _m0 from "protobufjs/minimal";
|
|
2
|
-
import { Color3 } from "../../common/colors.gen";
|
|
3
|
-
import { TextureUnion } from "../../common/texture.gen";
|
|
4
|
-
/**
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export interface PBLightSource {
|
|
8
|
-
/** default = true, whether the lightSource is active or not. */
|
|
9
|
-
active?: boolean | undefined;
|
|
10
|
-
/** default = Color.white, the tint of the light, in RGB format where each component is a floating point value with a range from 0 to 1. */
|
|
11
|
-
color?: Color3 | undefined;
|
|
12
|
-
/** default = 250, ranges from 1 (dim) to 100,000 (very bright), expressed in Lumens for Point and Spot. */
|
|
13
|
-
intensity?: number | undefined;
|
|
14
|
-
/** default = 0, how far the light travels, expressed in meters. If left at 0 will be computed automatically */
|
|
15
|
-
range?: number | undefined;
|
|
16
|
-
/** default = false, whether the light casts shadows or not. */
|
|
17
|
-
shadow?: boolean | undefined;
|
|
18
|
-
/** Texture mask through which shadows are cast to simulate caustics, soft shadows, and light shapes such as light entering from a window. */
|
|
19
|
-
shadowMaskTexture?: TextureUnion | undefined;
|
|
20
|
-
type?: {
|
|
21
|
-
$case: "point";
|
|
22
|
-
point: PBLightSource_Point;
|
|
23
|
-
} | {
|
|
24
|
-
$case: "spot";
|
|
25
|
-
spot: PBLightSource_Spot;
|
|
26
|
-
} | undefined;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
export interface PBLightSource_Point {
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* @public
|
|
35
|
-
*/
|
|
36
|
-
export interface PBLightSource_Spot {
|
|
37
|
-
/** default = 21.8. Inner angle can't be higher than outer angle, otherwise will default to same value. Min value is 0. Max value is 179. */
|
|
38
|
-
innerAngle?: number | undefined;
|
|
39
|
-
/** default = 30. Outer angle can't be lower than inner angle, otherwise will inner angle will be set to same value. Max value is 179. */
|
|
40
|
-
outerAngle?: number | undefined;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* @public
|
|
44
|
-
*/
|
|
45
|
-
export declare namespace PBLightSource {
|
|
46
|
-
function encode(message: PBLightSource, writer?: _m0.Writer): _m0.Writer;
|
|
47
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
|
-
export declare namespace PBLightSource_Point {
|
|
53
|
-
function encode(_: PBLightSource_Point, writer?: _m0.Writer): _m0.Writer;
|
|
54
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Point;
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* @public
|
|
58
|
-
*/
|
|
59
|
-
export declare namespace PBLightSource_Spot {
|
|
60
|
-
function encode(message: PBLightSource_Spot, writer?: _m0.Writer): _m0.Writer;
|
|
61
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Spot;
|
|
62
|
-
}
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.PBLightSource_Spot = exports.PBLightSource_Point = exports.PBLightSource = void 0;
|
|
7
|
-
/* eslint-disable */
|
|
8
|
-
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
9
|
-
const colors_gen_1 = require("../../common/colors.gen");
|
|
10
|
-
const texture_gen_1 = require("../../common/texture.gen");
|
|
11
|
-
const protobufPackageSarasa = "decentraland.sdk.components";
|
|
12
|
-
function createBasePBLightSource() {
|
|
13
|
-
return {
|
|
14
|
-
active: undefined,
|
|
15
|
-
color: undefined,
|
|
16
|
-
intensity: undefined,
|
|
17
|
-
range: undefined,
|
|
18
|
-
shadow: undefined,
|
|
19
|
-
shadowMaskTexture: undefined,
|
|
20
|
-
type: undefined,
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
var PBLightSource;
|
|
27
|
-
(function (PBLightSource) {
|
|
28
|
-
function encode(message, writer = minimal_1.default.Writer.create()) {
|
|
29
|
-
if (message.active !== undefined) {
|
|
30
|
-
writer.uint32(8).bool(message.active);
|
|
31
|
-
}
|
|
32
|
-
if (message.color !== undefined) {
|
|
33
|
-
colors_gen_1.Color3.encode(message.color, writer.uint32(18).fork()).ldelim();
|
|
34
|
-
}
|
|
35
|
-
if (message.intensity !== undefined) {
|
|
36
|
-
writer.uint32(29).float(message.intensity);
|
|
37
|
-
}
|
|
38
|
-
if (message.range !== undefined) {
|
|
39
|
-
writer.uint32(37).float(message.range);
|
|
40
|
-
}
|
|
41
|
-
if (message.shadow !== undefined) {
|
|
42
|
-
writer.uint32(40).bool(message.shadow);
|
|
43
|
-
}
|
|
44
|
-
if (message.shadowMaskTexture !== undefined) {
|
|
45
|
-
texture_gen_1.TextureUnion.encode(message.shadowMaskTexture, writer.uint32(50).fork()).ldelim();
|
|
46
|
-
}
|
|
47
|
-
switch (message.type?.$case) {
|
|
48
|
-
case "point":
|
|
49
|
-
PBLightSource_Point.encode(message.type.point, writer.uint32(58).fork()).ldelim();
|
|
50
|
-
break;
|
|
51
|
-
case "spot":
|
|
52
|
-
PBLightSource_Spot.encode(message.type.spot, writer.uint32(66).fork()).ldelim();
|
|
53
|
-
break;
|
|
54
|
-
}
|
|
55
|
-
return writer;
|
|
56
|
-
}
|
|
57
|
-
PBLightSource.encode = encode;
|
|
58
|
-
function decode(input, length) {
|
|
59
|
-
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
60
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
61
|
-
const message = createBasePBLightSource();
|
|
62
|
-
while (reader.pos < end) {
|
|
63
|
-
const tag = reader.uint32();
|
|
64
|
-
switch (tag >>> 3) {
|
|
65
|
-
case 1:
|
|
66
|
-
if (tag !== 8) {
|
|
67
|
-
break;
|
|
68
|
-
}
|
|
69
|
-
message.active = reader.bool();
|
|
70
|
-
continue;
|
|
71
|
-
case 2:
|
|
72
|
-
if (tag !== 18) {
|
|
73
|
-
break;
|
|
74
|
-
}
|
|
75
|
-
message.color = colors_gen_1.Color3.decode(reader, reader.uint32());
|
|
76
|
-
continue;
|
|
77
|
-
case 3:
|
|
78
|
-
if (tag !== 29) {
|
|
79
|
-
break;
|
|
80
|
-
}
|
|
81
|
-
message.intensity = reader.float();
|
|
82
|
-
continue;
|
|
83
|
-
case 4:
|
|
84
|
-
if (tag !== 37) {
|
|
85
|
-
break;
|
|
86
|
-
}
|
|
87
|
-
message.range = reader.float();
|
|
88
|
-
continue;
|
|
89
|
-
case 5:
|
|
90
|
-
if (tag !== 40) {
|
|
91
|
-
break;
|
|
92
|
-
}
|
|
93
|
-
message.shadow = reader.bool();
|
|
94
|
-
continue;
|
|
95
|
-
case 6:
|
|
96
|
-
if (tag !== 50) {
|
|
97
|
-
break;
|
|
98
|
-
}
|
|
99
|
-
message.shadowMaskTexture = texture_gen_1.TextureUnion.decode(reader, reader.uint32());
|
|
100
|
-
continue;
|
|
101
|
-
case 7:
|
|
102
|
-
if (tag !== 58) {
|
|
103
|
-
break;
|
|
104
|
-
}
|
|
105
|
-
message.type = { $case: "point", point: PBLightSource_Point.decode(reader, reader.uint32()) };
|
|
106
|
-
continue;
|
|
107
|
-
case 8:
|
|
108
|
-
if (tag !== 66) {
|
|
109
|
-
break;
|
|
110
|
-
}
|
|
111
|
-
message.type = { $case: "spot", spot: PBLightSource_Spot.decode(reader, reader.uint32()) };
|
|
112
|
-
continue;
|
|
113
|
-
}
|
|
114
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
115
|
-
break;
|
|
116
|
-
}
|
|
117
|
-
reader.skipType(tag & 7);
|
|
118
|
-
}
|
|
119
|
-
return message;
|
|
120
|
-
}
|
|
121
|
-
PBLightSource.decode = decode;
|
|
122
|
-
})(PBLightSource = exports.PBLightSource || (exports.PBLightSource = {}));
|
|
123
|
-
function createBasePBLightSource_Point() {
|
|
124
|
-
return {};
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* @public
|
|
128
|
-
*/
|
|
129
|
-
var PBLightSource_Point;
|
|
130
|
-
(function (PBLightSource_Point) {
|
|
131
|
-
function encode(_, writer = minimal_1.default.Writer.create()) {
|
|
132
|
-
return writer;
|
|
133
|
-
}
|
|
134
|
-
PBLightSource_Point.encode = encode;
|
|
135
|
-
function decode(input, length) {
|
|
136
|
-
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
137
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
138
|
-
const message = createBasePBLightSource_Point();
|
|
139
|
-
while (reader.pos < end) {
|
|
140
|
-
const tag = reader.uint32();
|
|
141
|
-
switch (tag >>> 3) {
|
|
142
|
-
}
|
|
143
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
144
|
-
break;
|
|
145
|
-
}
|
|
146
|
-
reader.skipType(tag & 7);
|
|
147
|
-
}
|
|
148
|
-
return message;
|
|
149
|
-
}
|
|
150
|
-
PBLightSource_Point.decode = decode;
|
|
151
|
-
})(PBLightSource_Point = exports.PBLightSource_Point || (exports.PBLightSource_Point = {}));
|
|
152
|
-
function createBasePBLightSource_Spot() {
|
|
153
|
-
return { innerAngle: undefined, outerAngle: undefined };
|
|
154
|
-
}
|
|
155
|
-
/**
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
var PBLightSource_Spot;
|
|
159
|
-
(function (PBLightSource_Spot) {
|
|
160
|
-
function encode(message, writer = minimal_1.default.Writer.create()) {
|
|
161
|
-
if (message.innerAngle !== undefined) {
|
|
162
|
-
writer.uint32(77).float(message.innerAngle);
|
|
163
|
-
}
|
|
164
|
-
if (message.outerAngle !== undefined) {
|
|
165
|
-
writer.uint32(85).float(message.outerAngle);
|
|
166
|
-
}
|
|
167
|
-
return writer;
|
|
168
|
-
}
|
|
169
|
-
PBLightSource_Spot.encode = encode;
|
|
170
|
-
function decode(input, length) {
|
|
171
|
-
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
172
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
173
|
-
const message = createBasePBLightSource_Spot();
|
|
174
|
-
while (reader.pos < end) {
|
|
175
|
-
const tag = reader.uint32();
|
|
176
|
-
switch (tag >>> 3) {
|
|
177
|
-
case 9:
|
|
178
|
-
if (tag !== 77) {
|
|
179
|
-
break;
|
|
180
|
-
}
|
|
181
|
-
message.innerAngle = reader.float();
|
|
182
|
-
continue;
|
|
183
|
-
case 10:
|
|
184
|
-
if (tag !== 85) {
|
|
185
|
-
break;
|
|
186
|
-
}
|
|
187
|
-
message.outerAngle = reader.float();
|
|
188
|
-
continue;
|
|
189
|
-
}
|
|
190
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
191
|
-
break;
|
|
192
|
-
}
|
|
193
|
-
reader.skipType(tag & 7);
|
|
194
|
-
}
|
|
195
|
-
return message;
|
|
196
|
-
}
|
|
197
|
-
PBLightSource_Spot.decode = decode;
|
|
198
|
-
})(PBLightSource_Spot = exports.PBLightSource_Spot || (exports.PBLightSource_Spot = {}));
|