@rocketshow/designer 1.35.0 → 1.36.0
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/esm2022/lib/fixture-pool/fixture-pool.component.mjs +8 -10
- package/esm2022/lib/preview/preview.component.mjs +1 -3
- package/esm2022/lib/services/fixture.service.mjs +84 -30
- package/esm2022/lib/services/preset.service.mjs +14 -13
- package/esm2022/lib/services/preview.service.mjs +25 -57
- package/esm2022/lib/services/project-load.service.mjs +16 -19
- package/fesm2022/rocketshow-designer.mjs +142 -126
- package/fesm2022/rocketshow-designer.mjs.map +1 -1
- package/lib/services/fixture.service.d.ts +5 -0
- package/lib/services/preset.service.d.ts +1 -0
- package/lib/services/preview.service.d.ts +0 -1
- package/package.json +1 -1
- package/rocketshow-designer-1.36.0.tgz +0 -0
- package/rocketshow-designer-1.35.0.tgz +0 -0
|
@@ -25,6 +25,7 @@ export declare class FixtureService {
|
|
|
25
25
|
selectedSettingsFixtures: Fixture[];
|
|
26
26
|
constructor(http: HttpClient, projectService: ProjectService, translateService: TranslateService, toastrService: ToastrService, uuidService: UuidService);
|
|
27
27
|
getFixtureByUuid(uuid: string): Fixture;
|
|
28
|
+
private fixtureUuidAndPixelKeyEquals;
|
|
28
29
|
getCachedFixtureByUuid(uuid: string, pixelKey: string): CachedFixture;
|
|
29
30
|
getSearchProfiles(): Observable<FixtureProfile[]>;
|
|
30
31
|
getProfileByUuid(uuid: string): FixtureProfile;
|
|
@@ -46,12 +47,16 @@ export declare class FixtureService {
|
|
|
46
47
|
private getDefaultValueByChannel;
|
|
47
48
|
private getColorWheelByChannel;
|
|
48
49
|
getChannelByName(fixture: CachedFixture, channelName: string): CachedFixtureChannel;
|
|
50
|
+
private getChannelNameWithPixelKey;
|
|
49
51
|
private addCachedChannel;
|
|
50
52
|
private alphanumericSort;
|
|
53
|
+
private getAllPixelKeys;
|
|
54
|
+
private getAllPixelGroups;
|
|
51
55
|
private getPixelKeysInOrder;
|
|
52
56
|
getModeChannelCount(profile: FixtureProfile, mode: FixtureMode): number;
|
|
53
57
|
getCachedChannels(profile: FixtureProfile, mode: FixtureMode, pixelKey: string): CachedFixtureChannel[];
|
|
54
58
|
fixtureGetUniquePixelKeys(fixture: Fixture): string[];
|
|
59
|
+
fixtureHasGeneralChannel(fixture: Fixture): boolean;
|
|
55
60
|
updateCachedFixtures(): void;
|
|
56
61
|
capabilitiesMatch(type1: FixtureCapabilityType, type2: FixtureCapabilityType, color1: FixtureCapabilityColor, color2: FixtureCapabilityColor, wheel1: string, wheel2: string, profileUuid1: string, profileUuid2: string): boolean;
|
|
57
62
|
settingsFixtureIsSelected(fixture: Fixture): boolean;
|
|
@@ -32,6 +32,7 @@ export declare class PresetService {
|
|
|
32
32
|
liveChangePending: boolean;
|
|
33
33
|
constructor(effectService: EffectService, uuidService: UuidService, projectService: ProjectService, fixtureService: FixtureService, configService: ConfigService, http: HttpClient, animationService: AnimationService);
|
|
34
34
|
getPresetByUuid(uuid: string): Preset;
|
|
35
|
+
fixtureUuidAndPixelKeyEquals(fixtureUuid1: string, fixtureUuid2: string, pixelKey1: string, pixelKey2: string): boolean;
|
|
35
36
|
getPresetFixture(preset: Preset, fixtureUuid: string, pixelKey?: string): PresetFixture;
|
|
36
37
|
fixtureIsSelected(fixture: Fixture, pixelKey: string, preset?: Preset): boolean;
|
|
37
38
|
switchFixtureSelection(fixture: Fixture, pixelKey: string): void;
|
|
@@ -29,7 +29,6 @@ export declare class PreviewService {
|
|
|
29
29
|
private mixChannelValues;
|
|
30
30
|
private mixEffects;
|
|
31
31
|
getChannelValues(timeMillis: number, presets: PresetRegionScene[]): Map<CachedFixture, FixtureChannelValue[]>;
|
|
32
|
-
setUniverseValues(fixtures: Map<CachedFixture, FixtureChannelValue[]>, masterDimmerValue: number): void;
|
|
33
32
|
fixtureIsSelected(uuid: string, pixelKey: string, presets: PresetRegionScene[]): boolean;
|
|
34
33
|
updateFixtureSetup(): void;
|
|
35
34
|
private prepareStageMesh;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|