isaacscript-common 31.3.1 → 31.5.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/dist/index.rollup.d.ts +29 -0
- package/dist/isaacscript-common.lua +101 -40
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayBomb.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayBomb.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayDoor.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayDoor.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayEffect.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayEffect.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayFamiliar.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayFamiliar.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayKnife.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayKnife.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayLaser.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayLaser.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayNPC.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayNPC.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPickup.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPickup.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPit.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPit.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPlayer.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPlayer.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPoop.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPoop.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPressurePlate.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayPressurePlate.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayProjectile.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayProjectile.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayRock.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayRock.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplaySlot.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplaySlot.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplaySpikes.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplaySpikes.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayTNT.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayTNT.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayTear.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/DebugDisplayTear.lua +2 -1
- package/dist/src/classes/features/other/debugDisplay/utils.d.ts +0 -1
- package/dist/src/classes/features/other/debugDisplay/utils.d.ts.map +1 -1
- package/dist/src/classes/features/other/debugDisplay/utils.lua +0 -17
- package/dist/src/functions/render.d.ts +16 -0
- package/dist/src/functions/render.d.ts.map +1 -0
- package/dist/src/functions/render.lua +50 -0
- package/dist/src/functions/utils.d.ts +0 -10
- package/dist/src/functions/utils.d.ts.map +1 -1
- package/dist/src/functions/utils.lua +0 -16
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.lua +8 -0
- package/dist/src/types/AddSubtract.d.ts +15 -0
- package/dist/src/types/AddSubtract.d.ts.map +1 -0
- package/dist/src/types/AddSubtract.lua +2 -0
- package/dist/src/types/Expand.d.ts +8 -0
- package/dist/src/types/Expand.d.ts.map +1 -0
- package/dist/src/types/Expand.lua +2 -0
- package/package.json +1 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayBomb.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayDoor.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayEffect.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayFamiliar.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayKnife.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayLaser.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayNPC.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayPickup.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayPit.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayPlayer.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayPoop.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayPressurePlate.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayProjectile.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayRock.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplaySlot.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplaySpikes.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayTNT.ts +2 -1
- package/src/classes/features/other/debugDisplay/DebugDisplayTear.ts +2 -1
- package/src/classes/features/other/debugDisplay/utils.ts +0 -13
- package/src/functions/render.ts +53 -0
- package/src/functions/utils.ts +0 -17
- package/src/index.ts +3 -0
- package/src/types/AddSubtract.ts +19 -0
- package/src/types/Expand.ts +5 -0
package/dist/index.rollup.d.ts
CHANGED
|
@@ -82,6 +82,12 @@ import type { TrapdoorVariant } from 'isaac-typescript-definitions';
|
|
|
82
82
|
import { TrinketType } from 'isaac-typescript-definitions';
|
|
83
83
|
import { UseFlag } from 'isaac-typescript-definitions';
|
|
84
84
|
|
|
85
|
+
/** From: https://gist.github.com/ryandabler/8b4ff4f36aed47bc09acc03174638468 */
|
|
86
|
+
export declare type Add<A extends number, B extends number> = Length<[
|
|
87
|
+
...BuildTuple<A>,
|
|
88
|
+
...BuildTuple<B>
|
|
89
|
+
]>;
|
|
90
|
+
|
|
85
91
|
declare interface AddCallbackParametersCustom {
|
|
86
92
|
[ModCallbackCustom.ENTITY_TAKE_DMG_FILTER]: [
|
|
87
93
|
callback: (entity: Entity, amount: float, damageFlags: BitFlags<DamageFlag>, source: EntityRef, countdownFrames: int) => boolean | undefined,
|
|
@@ -1249,6 +1255,10 @@ export declare const BLIND_ITEM_PNG_PATH = "gfx/items/collectibles/questionmark.
|
|
|
1249
1255
|
/** Bombs explode when their frame count is equal to this value. */
|
|
1250
1256
|
export declare const BOMB_EXPLODE_FRAME = 45;
|
|
1251
1257
|
|
|
1258
|
+
declare type BuildTuple<L extends number, T extends unknown[] = []> = T extends {
|
|
1259
|
+
length: L;
|
|
1260
|
+
} ? T : BuildTuple<L, [...T, unknown]>;
|
|
1261
|
+
|
|
1252
1262
|
/**
|
|
1253
1263
|
* Helper function that calculates what the stage type should be for the provided stage. This
|
|
1254
1264
|
* emulates what the game's internal code does.
|
|
@@ -4108,6 +4118,14 @@ declare class EsauJrDetection extends Feature {
|
|
|
4108
4118
|
*/
|
|
4109
4119
|
export declare function every<T>(array: T[], func: (value: T, index: number, array: T[]) => boolean): boolean;
|
|
4110
4120
|
|
|
4121
|
+
/**
|
|
4122
|
+
* From:
|
|
4123
|
+
* https://stackoverflow.com/questions/57683303/how-can-i-see-the-full-expanded-contract-of-a-typescript-type
|
|
4124
|
+
*/
|
|
4125
|
+
export declare type Expand<T> = T extends infer O ? {
|
|
4126
|
+
[K in keyof O]: O[K];
|
|
4127
|
+
} : never;
|
|
4128
|
+
|
|
4111
4129
|
declare class ExtraConsoleCommands extends Feature {
|
|
4112
4130
|
private readonly commandFunctionMap;
|
|
4113
4131
|
private readonly postUpdate;
|
|
@@ -9216,6 +9234,10 @@ export declare const LAST_VANILLA_PILL_EFFECT: PillEffect;
|
|
|
9216
9234
|
/** Calculated from the `TrinketType` enum. */
|
|
9217
9235
|
export declare const LAST_VANILLA_TRINKET_TYPE: TrinketType;
|
|
9218
9236
|
|
|
9237
|
+
declare type Length<T extends unknown[]> = T extends {
|
|
9238
|
+
length: infer L;
|
|
9239
|
+
} ? L : never;
|
|
9240
|
+
|
|
9219
9241
|
export declare function lerp(a: number, b: number, pos: float): number;
|
|
9220
9242
|
|
|
9221
9243
|
export declare function lerpAngleDegrees(aStart: number, aEnd: number, percent: float): number;
|
|
@@ -14865,6 +14887,10 @@ export declare const RENDER_FRAMES_PER_SECOND = 60;
|
|
|
14865
14887
|
*/
|
|
14866
14888
|
export declare function renderChargeBar(sprites: ChargeBarSprites, position: Vector, normalCharges: int, batteryCharges: int): void;
|
|
14867
14889
|
|
|
14890
|
+
export declare function renderScaledTextOnEntity(entity: Entity | GridEntity, text: string, scaleX: float, scaleY: float): void;
|
|
14891
|
+
|
|
14892
|
+
export declare function renderTextOnEntity(entity: Entity | GridEntity, text: string): void;
|
|
14893
|
+
|
|
14868
14894
|
/**
|
|
14869
14895
|
* Helper function to repeat code N times. This is faster to type and cleaner than using a for loop.
|
|
14870
14896
|
*
|
|
@@ -16796,6 +16822,9 @@ export declare type StartsWithUppercase<S> = S extends string ? Extract<S, Capit
|
|
|
16796
16822
|
*/
|
|
16797
16823
|
export declare function stopAllSoundEffects(soundEffectCustom?: unknown): void;
|
|
16798
16824
|
|
|
16825
|
+
/** From: https://gist.github.com/ryandabler/8b4ff4f36aed47bc09acc03174638468 */
|
|
16826
|
+
export declare type Subtract<A extends number, B extends number> = A extends A ? BuildTuple<A> extends [...infer U, ...BuildTuple<B>] ? Length<U> : never : never;
|
|
16827
|
+
|
|
16799
16828
|
/** Helper function to sum every value in an array together. */
|
|
16800
16829
|
export declare function sumArray(array: number[] | readonly number[]): number;
|
|
16801
16830
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 31.
|
|
3
|
+
isaacscript-common 31.5.0
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -16567,10 +16567,6 @@ local ____lualib = require("lualib_bundle")
|
|
|
16567
16567
|
local __TS__ArrayMap = ____lualib.__TS__ArrayMap
|
|
16568
16568
|
local __TS__New = ____lualib.__TS__New
|
|
16569
16569
|
local ____exports = {}
|
|
16570
|
-
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
16571
|
-
local RenderMode = ____isaac_2Dtypescript_2Ddefinitions.RenderMode
|
|
16572
|
-
local ____cachedClasses = require("src.core.cachedClasses")
|
|
16573
|
-
local game = ____cachedClasses.game
|
|
16574
16570
|
local ____ReadonlySet = require("src.types.ReadonlySet")
|
|
16575
16571
|
local ReadonlySet = ____ReadonlySet.ReadonlySet
|
|
16576
16572
|
local ____playerIndex = require("src.functions.playerIndex")
|
|
@@ -16634,11 +16630,6 @@ function ____exports.isMultiplayer(self)
|
|
|
16634
16630
|
local controllerIndexesSet = __TS__New(ReadonlySet, controllerIndexes)
|
|
16635
16631
|
return controllerIndexesSet.size > 1
|
|
16636
16632
|
end
|
|
16637
|
-
function ____exports.isReflectionRender(self)
|
|
16638
|
-
local room = game:GetRoom()
|
|
16639
|
-
local renderMode = room:GetRenderMode()
|
|
16640
|
-
return renderMode == RenderMode.WATER_REFLECT
|
|
16641
|
-
end
|
|
16642
16633
|
function ____exports.isRepentance(self)
|
|
16643
16634
|
local metatable = getmetatable(Sprite)
|
|
16644
16635
|
if metatable == nil then
|
|
@@ -45178,22 +45169,36 @@ return ____exports
|
|
|
45178
45169
|
local ____exports = {}
|
|
45179
45170
|
return ____exports
|
|
45180
45171
|
end,
|
|
45181
|
-
["src.
|
|
45172
|
+
["src.functions.render"] = function(...)
|
|
45182
45173
|
local ____exports = {}
|
|
45183
|
-
local
|
|
45184
|
-
local
|
|
45185
|
-
local
|
|
45186
|
-
local
|
|
45187
|
-
|
|
45188
|
-
local
|
|
45189
|
-
|
|
45190
|
-
return
|
|
45174
|
+
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45175
|
+
local RenderMode = ____isaac_2Dtypescript_2Ddefinitions.RenderMode
|
|
45176
|
+
local ____cachedClasses = require("src.core.cachedClasses")
|
|
45177
|
+
local game = ____cachedClasses.game
|
|
45178
|
+
function ____exports.isReflectionRender(self)
|
|
45179
|
+
local room = game:GetRoom()
|
|
45180
|
+
local renderMode = room:GetRenderMode()
|
|
45181
|
+
return renderMode == RenderMode.WATER_REFLECT
|
|
45191
45182
|
end
|
|
45192
|
-
function ____exports.
|
|
45193
|
-
|
|
45183
|
+
function ____exports.renderScaledTextOnEntity(self, entity, text, scaleX, scaleY)
|
|
45184
|
+
if ____exports.isReflectionRender(nil) then
|
|
45185
|
+
return
|
|
45186
|
+
end
|
|
45187
|
+
local position = Isaac.WorldToScreen(entity.Position)
|
|
45188
|
+
Isaac.RenderScaledText(
|
|
45189
|
+
text,
|
|
45190
|
+
position.X,
|
|
45191
|
+
position.Y,
|
|
45192
|
+
scaleX,
|
|
45193
|
+
scaleY,
|
|
45194
|
+
1,
|
|
45195
|
+
1,
|
|
45196
|
+
1,
|
|
45197
|
+
1
|
|
45198
|
+
)
|
|
45194
45199
|
end
|
|
45195
45200
|
function ____exports.renderTextOnEntity(self, entity, text)
|
|
45196
|
-
if isReflectionRender(nil) then
|
|
45201
|
+
if ____exports.isReflectionRender(nil) then
|
|
45197
45202
|
return
|
|
45198
45203
|
end
|
|
45199
45204
|
local position = Isaac.WorldToScreen(entity.Position)
|
|
@@ -45207,6 +45212,20 @@ function ____exports.renderTextOnEntity(self, entity, text)
|
|
|
45207
45212
|
1
|
|
45208
45213
|
)
|
|
45209
45214
|
end
|
|
45215
|
+
return ____exports
|
|
45216
|
+
end,
|
|
45217
|
+
["src.classes.features.other.debugDisplay.utils"] = function(...)
|
|
45218
|
+
local ____exports = {}
|
|
45219
|
+
local ____entities = require("src.functions.entities")
|
|
45220
|
+
local getEntityID = ____entities.getEntityID
|
|
45221
|
+
local ____gridEntities = require("src.functions.gridEntities")
|
|
45222
|
+
local getGridEntityID = ____gridEntities.getGridEntityID
|
|
45223
|
+
function ____exports.defaultEntityDisplayCallback(self, entity)
|
|
45224
|
+
return getEntityID(nil, entity)
|
|
45225
|
+
end
|
|
45226
|
+
function ____exports.defaultGridEntityDisplayCallback(self, gridEntity)
|
|
45227
|
+
return getGridEntityID(nil, gridEntity)
|
|
45228
|
+
end
|
|
45210
45229
|
return ____exports
|
|
45211
45230
|
end,
|
|
45212
45231
|
["src.classes.features.other.debugDisplay.DebugDisplayBomb"] = function(...)
|
|
@@ -45216,11 +45235,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45216
45235
|
local ____exports = {}
|
|
45217
45236
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45218
45237
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45238
|
+
local ____render = require("src.functions.render")
|
|
45239
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45219
45240
|
local ____Feature = require("src.classes.private.Feature")
|
|
45220
45241
|
local Feature = ____Feature.Feature
|
|
45221
45242
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45222
45243
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45223
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45224
45244
|
____exports.DebugDisplayBomb = __TS__Class()
|
|
45225
45245
|
local DebugDisplayBomb = ____exports.DebugDisplayBomb
|
|
45226
45246
|
DebugDisplayBomb.name = "DebugDisplayBomb"
|
|
@@ -45243,11 +45263,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45243
45263
|
local ____exports = {}
|
|
45244
45264
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45245
45265
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45266
|
+
local ____render = require("src.functions.render")
|
|
45267
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45246
45268
|
local ____Feature = require("src.classes.private.Feature")
|
|
45247
45269
|
local Feature = ____Feature.Feature
|
|
45248
45270
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45249
45271
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
45250
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45251
45272
|
____exports.DebugDisplayDoor = __TS__Class()
|
|
45252
45273
|
local DebugDisplayDoor = ____exports.DebugDisplayDoor
|
|
45253
45274
|
DebugDisplayDoor.name = "DebugDisplayDoor"
|
|
@@ -45270,11 +45291,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45270
45291
|
local ____exports = {}
|
|
45271
45292
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45272
45293
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45294
|
+
local ____render = require("src.functions.render")
|
|
45295
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45273
45296
|
local ____Feature = require("src.classes.private.Feature")
|
|
45274
45297
|
local Feature = ____Feature.Feature
|
|
45275
45298
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45276
45299
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45277
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45278
45300
|
____exports.DebugDisplayEffect = __TS__Class()
|
|
45279
45301
|
local DebugDisplayEffect = ____exports.DebugDisplayEffect
|
|
45280
45302
|
DebugDisplayEffect.name = "DebugDisplayEffect"
|
|
@@ -45297,11 +45319,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45297
45319
|
local ____exports = {}
|
|
45298
45320
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45299
45321
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45322
|
+
local ____render = require("src.functions.render")
|
|
45323
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45300
45324
|
local ____Feature = require("src.classes.private.Feature")
|
|
45301
45325
|
local Feature = ____Feature.Feature
|
|
45302
45326
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45303
45327
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45304
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45305
45328
|
____exports.DebugDisplayFamiliar = __TS__Class()
|
|
45306
45329
|
local DebugDisplayFamiliar = ____exports.DebugDisplayFamiliar
|
|
45307
45330
|
DebugDisplayFamiliar.name = "DebugDisplayFamiliar"
|
|
@@ -45324,11 +45347,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45324
45347
|
local ____exports = {}
|
|
45325
45348
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45326
45349
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45350
|
+
local ____render = require("src.functions.render")
|
|
45351
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45327
45352
|
local ____Feature = require("src.classes.private.Feature")
|
|
45328
45353
|
local Feature = ____Feature.Feature
|
|
45329
45354
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45330
45355
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45331
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45332
45356
|
____exports.DebugDisplayKnife = __TS__Class()
|
|
45333
45357
|
local DebugDisplayKnife = ____exports.DebugDisplayKnife
|
|
45334
45358
|
DebugDisplayKnife.name = "DebugDisplayKnife"
|
|
@@ -45351,11 +45375,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45351
45375
|
local ____exports = {}
|
|
45352
45376
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45353
45377
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45378
|
+
local ____render = require("src.functions.render")
|
|
45379
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45354
45380
|
local ____Feature = require("src.classes.private.Feature")
|
|
45355
45381
|
local Feature = ____Feature.Feature
|
|
45356
45382
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45357
45383
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45358
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45359
45384
|
____exports.DebugDisplayLaser = __TS__Class()
|
|
45360
45385
|
local DebugDisplayLaser = ____exports.DebugDisplayLaser
|
|
45361
45386
|
DebugDisplayLaser.name = "DebugDisplayLaser"
|
|
@@ -45378,11 +45403,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45378
45403
|
local ____exports = {}
|
|
45379
45404
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45380
45405
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45406
|
+
local ____render = require("src.functions.render")
|
|
45407
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45381
45408
|
local ____Feature = require("src.classes.private.Feature")
|
|
45382
45409
|
local Feature = ____Feature.Feature
|
|
45383
45410
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45384
45411
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45385
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45386
45412
|
____exports.DebugDisplayNPC = __TS__Class()
|
|
45387
45413
|
local DebugDisplayNPC = ____exports.DebugDisplayNPC
|
|
45388
45414
|
DebugDisplayNPC.name = "DebugDisplayNPC"
|
|
@@ -45405,11 +45431,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45405
45431
|
local ____exports = {}
|
|
45406
45432
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45407
45433
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45434
|
+
local ____render = require("src.functions.render")
|
|
45435
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45408
45436
|
local ____Feature = require("src.classes.private.Feature")
|
|
45409
45437
|
local Feature = ____Feature.Feature
|
|
45410
45438
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45411
45439
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45412
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45413
45440
|
____exports.DebugDisplayPickup = __TS__Class()
|
|
45414
45441
|
local DebugDisplayPickup = ____exports.DebugDisplayPickup
|
|
45415
45442
|
DebugDisplayPickup.name = "DebugDisplayPickup"
|
|
@@ -45432,11 +45459,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45432
45459
|
local ____exports = {}
|
|
45433
45460
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45434
45461
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45462
|
+
local ____render = require("src.functions.render")
|
|
45463
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45435
45464
|
local ____Feature = require("src.classes.private.Feature")
|
|
45436
45465
|
local Feature = ____Feature.Feature
|
|
45437
45466
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45438
45467
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
45439
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45440
45468
|
____exports.DebugDisplayPit = __TS__Class()
|
|
45441
45469
|
local DebugDisplayPit = ____exports.DebugDisplayPit
|
|
45442
45470
|
DebugDisplayPit.name = "DebugDisplayPit"
|
|
@@ -45459,11 +45487,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45459
45487
|
local ____exports = {}
|
|
45460
45488
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45461
45489
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45490
|
+
local ____render = require("src.functions.render")
|
|
45491
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45462
45492
|
local ____Feature = require("src.classes.private.Feature")
|
|
45463
45493
|
local Feature = ____Feature.Feature
|
|
45464
45494
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45465
45495
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45466
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45467
45496
|
____exports.DebugDisplayPlayer = __TS__Class()
|
|
45468
45497
|
local DebugDisplayPlayer = ____exports.DebugDisplayPlayer
|
|
45469
45498
|
DebugDisplayPlayer.name = "DebugDisplayPlayer"
|
|
@@ -45486,11 +45515,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45486
45515
|
local ____exports = {}
|
|
45487
45516
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45488
45517
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45518
|
+
local ____render = require("src.functions.render")
|
|
45519
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45489
45520
|
local ____Feature = require("src.classes.private.Feature")
|
|
45490
45521
|
local Feature = ____Feature.Feature
|
|
45491
45522
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45492
45523
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
45493
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45494
45524
|
____exports.DebugDisplayPoop = __TS__Class()
|
|
45495
45525
|
local DebugDisplayPoop = ____exports.DebugDisplayPoop
|
|
45496
45526
|
DebugDisplayPoop.name = "DebugDisplayPoop"
|
|
@@ -45513,11 +45543,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45513
45543
|
local ____exports = {}
|
|
45514
45544
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45515
45545
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45546
|
+
local ____render = require("src.functions.render")
|
|
45547
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45516
45548
|
local ____Feature = require("src.classes.private.Feature")
|
|
45517
45549
|
local Feature = ____Feature.Feature
|
|
45518
45550
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45519
45551
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
45520
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45521
45552
|
____exports.DebugDisplayPressurePlate = __TS__Class()
|
|
45522
45553
|
local DebugDisplayPressurePlate = ____exports.DebugDisplayPressurePlate
|
|
45523
45554
|
DebugDisplayPressurePlate.name = "DebugDisplayPressurePlate"
|
|
@@ -45540,11 +45571,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45540
45571
|
local ____exports = {}
|
|
45541
45572
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45542
45573
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45574
|
+
local ____render = require("src.functions.render")
|
|
45575
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45543
45576
|
local ____Feature = require("src.classes.private.Feature")
|
|
45544
45577
|
local Feature = ____Feature.Feature
|
|
45545
45578
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45546
45579
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45547
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45548
45580
|
____exports.DebugDisplayProjectile = __TS__Class()
|
|
45549
45581
|
local DebugDisplayProjectile = ____exports.DebugDisplayProjectile
|
|
45550
45582
|
DebugDisplayProjectile.name = "DebugDisplayProjectile"
|
|
@@ -45567,11 +45599,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45567
45599
|
local ____exports = {}
|
|
45568
45600
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45569
45601
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45602
|
+
local ____render = require("src.functions.render")
|
|
45603
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45570
45604
|
local ____Feature = require("src.classes.private.Feature")
|
|
45571
45605
|
local Feature = ____Feature.Feature
|
|
45572
45606
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45573
45607
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
45574
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45575
45608
|
____exports.DebugDisplayRock = __TS__Class()
|
|
45576
45609
|
local DebugDisplayRock = ____exports.DebugDisplayRock
|
|
45577
45610
|
DebugDisplayRock.name = "DebugDisplayRock"
|
|
@@ -45594,11 +45627,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45594
45627
|
local ____exports = {}
|
|
45595
45628
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45596
45629
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45630
|
+
local ____render = require("src.functions.render")
|
|
45631
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45597
45632
|
local ____Feature = require("src.classes.private.Feature")
|
|
45598
45633
|
local Feature = ____Feature.Feature
|
|
45599
45634
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45600
45635
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45601
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45602
45636
|
____exports.DebugDisplaySlot = __TS__Class()
|
|
45603
45637
|
local DebugDisplaySlot = ____exports.DebugDisplaySlot
|
|
45604
45638
|
DebugDisplaySlot.name = "DebugDisplaySlot"
|
|
@@ -45621,11 +45655,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45621
45655
|
local ____exports = {}
|
|
45622
45656
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45623
45657
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45658
|
+
local ____render = require("src.functions.render")
|
|
45659
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45624
45660
|
local ____Feature = require("src.classes.private.Feature")
|
|
45625
45661
|
local Feature = ____Feature.Feature
|
|
45626
45662
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45627
45663
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
45628
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45629
45664
|
____exports.DebugDisplaySpikes = __TS__Class()
|
|
45630
45665
|
local DebugDisplaySpikes = ____exports.DebugDisplaySpikes
|
|
45631
45666
|
DebugDisplaySpikes.name = "DebugDisplaySpikes"
|
|
@@ -45648,11 +45683,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45648
45683
|
local ____exports = {}
|
|
45649
45684
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
45650
45685
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
45686
|
+
local ____render = require("src.functions.render")
|
|
45687
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45651
45688
|
local ____Feature = require("src.classes.private.Feature")
|
|
45652
45689
|
local Feature = ____Feature.Feature
|
|
45653
45690
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45654
45691
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
45655
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45656
45692
|
____exports.DebugDisplayTear = __TS__Class()
|
|
45657
45693
|
local DebugDisplayTear = ____exports.DebugDisplayTear
|
|
45658
45694
|
DebugDisplayTear.name = "DebugDisplayTear"
|
|
@@ -45675,11 +45711,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
45675
45711
|
local ____exports = {}
|
|
45676
45712
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
45677
45713
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
45714
|
+
local ____render = require("src.functions.render")
|
|
45715
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
45678
45716
|
local ____Feature = require("src.classes.private.Feature")
|
|
45679
45717
|
local Feature = ____Feature.Feature
|
|
45680
45718
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
45681
45719
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
45682
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
45683
45720
|
____exports.DebugDisplayTNT = __TS__Class()
|
|
45684
45721
|
local DebugDisplayTNT = ____exports.DebugDisplayTNT
|
|
45685
45722
|
DebugDisplayTNT.name = "DebugDisplayTNT"
|
|
@@ -53824,6 +53861,10 @@ ____exports.K_COLORS = {
|
|
|
53824
53861
|
Orange = KColor(1, 0.647, 0, 1),
|
|
53825
53862
|
Purple = KColor(0.5, 0, 0.5, 1)
|
|
53826
53863
|
}
|
|
53864
|
+
return ____exports
|
|
53865
|
+
end,
|
|
53866
|
+
["src.types.AddSubtract"] = function(...)
|
|
53867
|
+
local ____exports = {}
|
|
53827
53868
|
return ____exports
|
|
53828
53869
|
end,
|
|
53829
53870
|
["src.types.AllButLast"] = function(...)
|
|
@@ -53832,6 +53873,10 @@ return ____exports
|
|
|
53832
53873
|
end,
|
|
53833
53874
|
["src.types.Decrement"] = function(...)
|
|
53834
53875
|
local ____exports = {}
|
|
53876
|
+
return ____exports
|
|
53877
|
+
end,
|
|
53878
|
+
["src.types.Expand"] = function(...)
|
|
53879
|
+
local ____exports = {}
|
|
53835
53880
|
return ____exports
|
|
53836
53881
|
end,
|
|
53837
53882
|
["src.types.HasFunction"] = function(...)
|
|
@@ -54681,6 +54726,14 @@ do
|
|
|
54681
54726
|
end
|
|
54682
54727
|
end
|
|
54683
54728
|
end
|
|
54729
|
+
do
|
|
54730
|
+
local ____export = require("src.functions.render")
|
|
54731
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
54732
|
+
if ____exportKey ~= "default" then
|
|
54733
|
+
____exports[____exportKey] = ____exportValue
|
|
54734
|
+
end
|
|
54735
|
+
end
|
|
54736
|
+
end
|
|
54684
54737
|
do
|
|
54685
54738
|
local ____export = require("src.functions.revive")
|
|
54686
54739
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -55797,6 +55850,14 @@ do
|
|
|
55797
55850
|
end
|
|
55798
55851
|
end
|
|
55799
55852
|
end
|
|
55853
|
+
do
|
|
55854
|
+
local ____export = require("src.functions.render")
|
|
55855
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
55856
|
+
if ____exportKey ~= "default" then
|
|
55857
|
+
____exports[____exportKey] = ____exportValue
|
|
55858
|
+
end
|
|
55859
|
+
end
|
|
55860
|
+
end
|
|
55800
55861
|
do
|
|
55801
55862
|
local ____export = require("src.functions.revive")
|
|
55802
55863
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayBomb.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayBomb.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayBomb.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayBomb.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,gBAAiB,SAAQ,OAAO;IACpC,YAAY,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,MAAM,CAClB;;IAY/B,OAAO,CAAC,QAAQ,CAAC,cAAc,CAG7B;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
6
6
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayBomb = __TS__Class()
|
|
13
14
|
local DebugDisplayBomb = ____exports.DebugDisplayBomb
|
|
14
15
|
DebugDisplayBomb.name = "DebugDisplayBomb"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayDoor.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayDoor.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayDoor.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayDoor.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,gBAAiB,SAAQ,OAAO;IACpC,YAAY,EAAE,CAAC,IAAI,EAAE,cAAc,KAAK,MAAM,CAClB;;IAWnC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAG7B;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
6
6
|
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultGridEntityDisplayCallback = ____utils.defaultGridEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayDoor = __TS__Class()
|
|
13
14
|
local DebugDisplayDoor = ____exports.DebugDisplayDoor
|
|
14
15
|
DebugDisplayDoor.name = "DebugDisplayDoor"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayEffect.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayEffect.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayEffect.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayEffect.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,kBAAmB,SAAQ,OAAO;IACtC,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,MAAM,CACtB;;IAY/B,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAG/B;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
6
6
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayEffect = __TS__Class()
|
|
13
14
|
local DebugDisplayEffect = ____exports.DebugDisplayEffect
|
|
14
15
|
DebugDisplayEffect.name = "DebugDisplayEffect"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayFamiliar.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayFamiliar.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayFamiliar.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayFamiliar.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,oBAAqB,SAAQ,OAAO;IACxC,YAAY,EAAE,CAAC,QAAQ,EAAE,cAAc,KAAK,MAAM,CAC1B;;IAY/B,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAGjC;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
6
6
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayFamiliar = __TS__Class()
|
|
13
14
|
local DebugDisplayFamiliar = ____exports.DebugDisplayFamiliar
|
|
14
15
|
DebugDisplayFamiliar.name = "DebugDisplayFamiliar"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayKnife.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayKnife.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayKnife.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayKnife.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,iBAAkB,SAAQ,OAAO;IACrC,YAAY,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,MAAM,CACpB;;IAY/B,OAAO,CAAC,QAAQ,CAAC,eAAe,CAG9B;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
6
6
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayKnife = __TS__Class()
|
|
13
14
|
local DebugDisplayKnife = ____exports.DebugDisplayKnife
|
|
14
15
|
DebugDisplayKnife.name = "DebugDisplayKnife"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayLaser.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayLaser.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayLaser.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayLaser.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,iBAAkB,SAAQ,OAAO;IACrC,YAAY,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,MAAM,CACpB;;IAY/B,OAAO,CAAC,QAAQ,CAAC,eAAe,CAG9B;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
6
6
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayLaser = __TS__Class()
|
|
13
14
|
local DebugDisplayLaser = ____exports.DebugDisplayLaser
|
|
14
15
|
DebugDisplayLaser.name = "DebugDisplayLaser"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayNPC.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayNPC.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayNPC.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayNPC.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,eAAgB,SAAQ,OAAO;IACnC,YAAY,EAAE,CAAC,GAAG,EAAE,SAAS,KAAK,MAAM,CAChB;;IAY/B,OAAO,CAAC,QAAQ,CAAC,aAAa,CAG5B;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
6
6
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayNPC = __TS__Class()
|
|
13
14
|
local DebugDisplayNPC = ____exports.DebugDisplayNPC
|
|
14
15
|
DebugDisplayNPC.name = "DebugDisplayNPC"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayPickup.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayPickup.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayPickup.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayPickup.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,kBAAmB,SAAQ,OAAO;IACtC,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,MAAM,CACtB;;IAY/B,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAG/B;CACH"}
|
|
@@ -4,11 +4,12 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
|
4
4
|
local ____exports = {}
|
|
5
5
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
6
6
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
7
|
+
local ____render = require("src.functions.render")
|
|
8
|
+
local renderTextOnEntity = ____render.renderTextOnEntity
|
|
7
9
|
local ____Feature = require("src.classes.private.Feature")
|
|
8
10
|
local Feature = ____Feature.Feature
|
|
9
11
|
local ____utils = require("src.classes.features.other.debugDisplay.utils")
|
|
10
12
|
local defaultEntityDisplayCallback = ____utils.defaultEntityDisplayCallback
|
|
11
|
-
local renderTextOnEntity = ____utils.renderTextOnEntity
|
|
12
13
|
____exports.DebugDisplayPickup = __TS__Class()
|
|
13
14
|
local DebugDisplayPickup = ____exports.DebugDisplayPickup
|
|
14
15
|
DebugDisplayPickup.name = "DebugDisplayPickup"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDisplayPit.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayPit.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DebugDisplayPit.d.ts","sourceRoot":"","sources":["../../../../../../src/classes/features/other/debugDisplay/DebugDisplayPit.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,eAAgB,SAAQ,OAAO;IACnC,YAAY,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,CAChB;;IAWnC,OAAO,CAAC,QAAQ,CAAC,aAAa,CAG5B;CACH"}
|