isaacscript-common 16.1.5 → 16.1.6
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 16.1.
|
|
3
|
+
isaacscript-common 16.1.6
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -35357,6 +35357,7 @@ __TS__ClassExtends(DisableInputs, Feature)
|
|
|
35357
35357
|
function DisableInputs.prototype.____constructor(self)
|
|
35358
35358
|
Feature.prototype.____constructor(self)
|
|
35359
35359
|
self.v = {run = {
|
|
35360
|
+
__ignoreGlowingHourGlass = true,
|
|
35360
35361
|
disableInputs = __TS__New(Map),
|
|
35361
35362
|
enableAllInputsWithBlacklistMap = __TS__New(Map),
|
|
35362
35363
|
disableAllInputsWithWhitelistMap = __TS__New(Map)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DisableInputs.d.ts","sourceRoot":"","sources":["../../../../../src/classes/features/other/DisableInputs.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EAGb,MAAM,8BAA8B,CAAC;AAGtC,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEhD,qBAAa,aAAc,SAAQ,OAAO;
|
|
1
|
+
{"version":3,"file":"DisableInputs.d.ts","sourceRoot":"","sources":["../../../../../src/classes/features/other/DisableInputs.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EAGb,MAAM,8BAA8B,CAAC;AAGtC,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEhD,qBAAa,aAAc,SAAQ,OAAO;IAiDxC,OAAO,CAAC,eAAe,CAIsB;IAG7C,OAAO,CAAC,iBAAiB,CAIoB;IAG7C,OAAO,CAAC,cAAc,CAIwB;IAE9C,OAAO,CAAC,cAAc;IAwBtB;;;;;;;;OAQG;IAEI,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAKzC;;;;;;;;;;;;;OAaG;IAEI,aAAa,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,aAAa,EAAE,YAAY,EAAE,GAAG,IAAI;IAKzE;;;;;;;;;;OAUG;IAEI,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK1C;;;;;;;;;;;OAWG;IAEI,wBAAwB,CAC7B,GAAG,EAAE,MAAM,EACX,SAAS,EAAE,GAAG,CAAC,YAAY,CAAC,GAAG,WAAW,CAAC,YAAY,CAAC,GACvD,IAAI;IAKP;;;;;;;;;;;OAWG;IAEI,yBAAyB,CAC9B,GAAG,EAAE,MAAM,EACX,SAAS,EAAE,GAAG,CAAC,YAAY,CAAC,GAAG,WAAW,CAAC,YAAY,CAAC,GACvD,IAAI;IAKP;;;;;;;;;;;OAWG;IAEI,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK/C;;;;;;;;;;OAUG;IAEI,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;CAIhD"}
|
|
@@ -24,6 +24,7 @@ __TS__ClassExtends(DisableInputs, Feature)
|
|
|
24
24
|
function DisableInputs.prototype.____constructor(self)
|
|
25
25
|
Feature.prototype.____constructor(self)
|
|
26
26
|
self.v = {run = {
|
|
27
|
+
__ignoreGlowingHourGlass = true,
|
|
27
28
|
disableInputs = __TS__New(Map),
|
|
28
29
|
enableAllInputsWithBlacklistMap = __TS__New(Map),
|
|
29
30
|
disableAllInputsWithWhitelistMap = __TS__New(Map)
|
package/package.json
CHANGED
|
@@ -11,6 +11,13 @@ export class DisableInputs extends Feature {
|
|
|
11
11
|
/** @internal */
|
|
12
12
|
public override v = {
|
|
13
13
|
run: {
|
|
14
|
+
/**
|
|
15
|
+
* Glowing Hour Glass support is disabled by default since it can cause bugs with
|
|
16
|
+
* extra-gameplay features. (For example, whether the player should be able to move or not
|
|
17
|
+
* should often not be reset by the Glowing Hour Glass.)
|
|
18
|
+
*/
|
|
19
|
+
__ignoreGlowingHourGlass: true,
|
|
20
|
+
|
|
14
21
|
/** Indexed by the requesting feature key. */
|
|
15
22
|
disableInputs: new Map<string, ReadonlySet<ButtonAction>>(),
|
|
16
23
|
|