isaac-typescript-definitions
Version:
TypeScript definitions for The Binding of Isaac: Repentance.
14 lines (13 loc) • 666 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CollectibleAnimation = void 0;
/** These are the animations in the "005.100_collectible.anm2" file. */
var CollectibleAnimation;
(function (CollectibleAnimation) {
CollectibleAnimation["IDLE"] = "Idle";
CollectibleAnimation["EMPTY"] = "Empty";
CollectibleAnimation["SHOP_IDLE"] = "ShopIdle";
CollectibleAnimation["PLAYER_PICKUP"] = "PlayerPickup";
CollectibleAnimation["PLAYER_PICKUP_SPARKLE"] = "PlayerPickupSparkle";
CollectibleAnimation["ALTERNATE"] = "Alternates";
})(CollectibleAnimation || (exports.CollectibleAnimation = CollectibleAnimation = {}));
;