raspberry_games_engine_helpers 1.8.389 → 1.8.391
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.
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
function addFormatStructureForTime(structure) {
|
|
381
381
|
this.h1c(structure);
|
|
382
382
|
}
|
|
383
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
383
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
384
384
|
initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
|
|
385
385
|
initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
|
|
386
386
|
function set_fractionOfSecond(value) {
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
|
|
217
217
|
//endregion
|
|
218
218
|
function GameEngineConfig() {
|
|
219
|
-
this.version = '1.8.
|
|
219
|
+
this.version = '1.8.391';
|
|
220
220
|
}
|
|
221
221
|
protoOf(GameEngineConfig).k17 = function () {
|
|
222
222
|
return this.version;
|
|
@@ -875,7 +875,7 @@ export declare namespace games.jass.logic.data.models {
|
|
|
875
875
|
}
|
|
876
876
|
export declare namespace games.jass.logic.data.models.config {
|
|
877
877
|
class RatingConfig {
|
|
878
|
-
constructor(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, ffaMaxRatingDecreaseFraction?: number, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean);
|
|
878
|
+
constructor(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, ffaMaxRatingDecreaseFraction?: number, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean, loserPenaltyBaseFraction?: number, loserPenaltyExcellentThreshold?: number, loserPenaltyGoodThreshold?: number);
|
|
879
879
|
get defaultFactor(): number;
|
|
880
880
|
get eloScaleH2H(): number;
|
|
881
881
|
get eloScaleFfa(): number;
|
|
@@ -884,7 +884,10 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
884
884
|
get ffaMaxRatingDecreaseFraction(): number;
|
|
885
885
|
get botNativeUpdatesRating(): boolean;
|
|
886
886
|
get replacementForcedDecrease(): boolean;
|
|
887
|
-
|
|
887
|
+
get loserPenaltyBaseFraction(): number;
|
|
888
|
+
get loserPenaltyExcellentThreshold(): number;
|
|
889
|
+
get loserPenaltyGoodThreshold(): number;
|
|
890
|
+
copy(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, ffaMaxRatingDecreaseFraction?: number, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean, loserPenaltyBaseFraction?: number, loserPenaltyExcellentThreshold?: number, loserPenaltyGoodThreshold?: number): games.jass.logic.data.models.config.RatingConfig;
|
|
888
891
|
toString(): string;
|
|
889
892
|
hashCode(): number;
|
|
890
893
|
equals(other: Nullable<any>): boolean;
|