isaacscript-common 15.3.7 → 15.3.8
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/isaacscript-common.lua +3 -3
- package/dist/src/classes/callbacks/PostGridEntityCollision.lua +1 -1
- package/dist/src/classes/callbacks/PostGridEntityCustomCollision.lua +1 -1
- package/package.json +2 -2
- package/src/classes/callbacks/PostGridEntityCollision.ts +1 -1
- package/src/classes/callbacks/PostGridEntityCustomCollision.ts +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 15.3.
|
|
3
|
+
isaacscript-common 15.3.8
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -23252,7 +23252,7 @@ function PostGridEntityCollision.prototype.____constructor(self)
|
|
|
23252
23252
|
local gridEntityVariant = gridEntity:GetVariant()
|
|
23253
23253
|
return (callbackGridEntityType == nil or callbackGridEntityType == gridEntityType) and (callbackGridEntityVariant == nil or callbackGridEntityVariant == gridEntityVariant) and (callbackEntityType == nil or callbackEntityType == entity.Type) and (callbackEntityVariant == nil or callbackEntityVariant == entity.Variant) and (callbackEntitySubType == nil or callbackEntitySubType == entity.SubType)
|
|
23254
23254
|
end
|
|
23255
|
-
self.featuresUsed = {ISCFeature.
|
|
23255
|
+
self.featuresUsed = {ISCFeature.GRID_ENTITY_COLLISION_DETECTION}
|
|
23256
23256
|
end
|
|
23257
23257
|
return ____exports
|
|
23258
23258
|
end,
|
|
@@ -23298,7 +23298,7 @@ function PostGridEntityCustomCollision.prototype.____constructor(self)
|
|
|
23298
23298
|
local callbackGridEntityTypeCustom, callbackEntityType, callbackEntityVariant, callbackEntitySubType = table.unpack(optionalArgs)
|
|
23299
23299
|
return (callbackGridEntityTypeCustom == nil or callbackGridEntityTypeCustom == gridEntityTypeCustom) and (callbackEntityType == nil or callbackEntityType == entity.Type) and (callbackEntityVariant == nil or callbackEntityVariant == entity.Variant) and (callbackEntitySubType == nil or callbackEntitySubType == entity.SubType)
|
|
23300
23300
|
end
|
|
23301
|
-
self.featuresUsed = {ISCFeature.
|
|
23301
|
+
self.featuresUsed = {ISCFeature.GRID_ENTITY_COLLISION_DETECTION}
|
|
23302
23302
|
end
|
|
23303
23303
|
return ____exports
|
|
23304
23304
|
end,
|
|
@@ -19,6 +19,6 @@ function PostGridEntityCollision.prototype.____constructor(self)
|
|
|
19
19
|
local gridEntityVariant = gridEntity:GetVariant()
|
|
20
20
|
return (callbackGridEntityType == nil or callbackGridEntityType == gridEntityType) and (callbackGridEntityVariant == nil or callbackGridEntityVariant == gridEntityVariant) and (callbackEntityType == nil or callbackEntityType == entity.Type) and (callbackEntityVariant == nil or callbackEntityVariant == entity.Variant) and (callbackEntitySubType == nil or callbackEntitySubType == entity.SubType)
|
|
21
21
|
end
|
|
22
|
-
self.featuresUsed = {ISCFeature.
|
|
22
|
+
self.featuresUsed = {ISCFeature.GRID_ENTITY_COLLISION_DETECTION}
|
|
23
23
|
end
|
|
24
24
|
return ____exports
|
|
@@ -17,6 +17,6 @@ function PostGridEntityCustomCollision.prototype.____constructor(self)
|
|
|
17
17
|
local callbackGridEntityTypeCustom, callbackEntityType, callbackEntityVariant, callbackEntitySubType = table.unpack(optionalArgs)
|
|
18
18
|
return (callbackGridEntityTypeCustom == nil or callbackGridEntityTypeCustom == gridEntityTypeCustom) and (callbackEntityType == nil or callbackEntityType == entity.Type) and (callbackEntityVariant == nil or callbackEntityVariant == entity.Variant) and (callbackEntitySubType == nil or callbackEntitySubType == entity.SubType)
|
|
19
19
|
end
|
|
20
|
-
self.featuresUsed = {ISCFeature.
|
|
20
|
+
self.featuresUsed = {ISCFeature.GRID_ENTITY_COLLISION_DETECTION}
|
|
21
21
|
end
|
|
22
22
|
return ____exports
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "15.3.
|
|
3
|
+
"version": "15.3.8",
|
|
4
4
|
"description": "Helper functions and features for IsaacScript mods.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"main": "dist/src/index",
|
|
23
23
|
"types": "dist/src/index.d.ts",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"isaac-typescript-definitions": "^9.0.
|
|
25
|
+
"isaac-typescript-definitions": "^9.0.6"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -12,7 +12,7 @@ export class PostGridEntityCollision extends CustomCallback<T> {
|
|
|
12
12
|
constructor() {
|
|
13
13
|
super();
|
|
14
14
|
|
|
15
|
-
this.featuresUsed = [ISCFeature.
|
|
15
|
+
this.featuresUsed = [ISCFeature.GRID_ENTITY_COLLISION_DETECTION];
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
// eslint-disable-next-line class-methods-use-this
|
|
@@ -12,7 +12,7 @@ export class PostGridEntityCustomCollision extends CustomCallback<T> {
|
|
|
12
12
|
constructor() {
|
|
13
13
|
super();
|
|
14
14
|
|
|
15
|
-
this.featuresUsed = [ISCFeature.
|
|
15
|
+
this.featuresUsed = [ISCFeature.GRID_ENTITY_COLLISION_DETECTION];
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
// eslint-disable-next-line class-methods-use-this
|