isaacscript-common 29.6.1 → 29.6.2
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
CHANGED
|
@@ -10957,7 +10957,7 @@ export declare enum ModCallbackCustom {
|
|
|
10957
10957
|
* matches the sub-type provided.
|
|
10958
10958
|
*
|
|
10959
10959
|
* ```ts
|
|
10960
|
-
* function postProjectileInitFilter(
|
|
10960
|
+
* function postProjectileInitFilter(projectile: EntityProjectile): void {}
|
|
10961
10961
|
* ```
|
|
10962
10962
|
*/
|
|
10963
10963
|
POST_PROJECTILE_INIT_FILTER = 98,
|
|
@@ -10989,7 +10989,7 @@ export declare enum ModCallbackCustom {
|
|
|
10989
10989
|
* matches the sub-type provided.
|
|
10990
10990
|
*
|
|
10991
10991
|
* ```ts
|
|
10992
|
-
* function postProjectileRenderFilter(
|
|
10992
|
+
* function postProjectileRenderFilter(projectile: EntityProjectile, renderOffset: Vector): void {}
|
|
10993
10993
|
* ```
|
|
10994
10994
|
*/
|
|
10995
10995
|
POST_PROJECTILE_RENDER_FILTER = 100,
|
|
@@ -11004,7 +11004,7 @@ export declare enum ModCallbackCustom {
|
|
|
11004
11004
|
* matches the sub-type provided.
|
|
11005
11005
|
*
|
|
11006
11006
|
* ```ts
|
|
11007
|
-
* function postProjectileUpdateFilter(
|
|
11007
|
+
* function postProjectileUpdateFilter(projectile: EntityProjectile): void {}
|
|
11008
11008
|
* ```
|
|
11009
11009
|
*/
|
|
11010
11010
|
POST_PROJECTILE_UPDATE_FILTER = 101,
|
|
@@ -1722,7 +1722,7 @@ export declare enum ModCallbackCustom {
|
|
|
1722
1722
|
* matches the sub-type provided.
|
|
1723
1723
|
*
|
|
1724
1724
|
* ```ts
|
|
1725
|
-
* function postProjectileInitFilter(
|
|
1725
|
+
* function postProjectileInitFilter(projectile: EntityProjectile): void {}
|
|
1726
1726
|
* ```
|
|
1727
1727
|
*/
|
|
1728
1728
|
POST_PROJECTILE_INIT_FILTER = 98,
|
|
@@ -1754,7 +1754,7 @@ export declare enum ModCallbackCustom {
|
|
|
1754
1754
|
* matches the sub-type provided.
|
|
1755
1755
|
*
|
|
1756
1756
|
* ```ts
|
|
1757
|
-
* function postProjectileRenderFilter(
|
|
1757
|
+
* function postProjectileRenderFilter(projectile: EntityProjectile, renderOffset: Vector): void {}
|
|
1758
1758
|
* ```
|
|
1759
1759
|
*/
|
|
1760
1760
|
POST_PROJECTILE_RENDER_FILTER = 100,
|
|
@@ -1769,7 +1769,7 @@ export declare enum ModCallbackCustom {
|
|
|
1769
1769
|
* matches the sub-type provided.
|
|
1770
1770
|
*
|
|
1771
1771
|
* ```ts
|
|
1772
|
-
* function postProjectileUpdateFilter(
|
|
1772
|
+
* function postProjectileUpdateFilter(projectile: EntityProjectile): void {}
|
|
1773
1773
|
* ```
|
|
1774
1774
|
*/
|
|
1775
1775
|
POST_PROJECTILE_UPDATE_FILTER = 101,
|
package/package.json
CHANGED
|
@@ -1832,7 +1832,7 @@ export enum ModCallbackCustom {
|
|
|
1832
1832
|
* matches the sub-type provided.
|
|
1833
1833
|
*
|
|
1834
1834
|
* ```ts
|
|
1835
|
-
* function postProjectileInitFilter(
|
|
1835
|
+
* function postProjectileInitFilter(projectile: EntityProjectile): void {}
|
|
1836
1836
|
* ```
|
|
1837
1837
|
*/
|
|
1838
1838
|
POST_PROJECTILE_INIT_FILTER,
|
|
@@ -1866,7 +1866,7 @@ export enum ModCallbackCustom {
|
|
|
1866
1866
|
* matches the sub-type provided.
|
|
1867
1867
|
*
|
|
1868
1868
|
* ```ts
|
|
1869
|
-
* function postProjectileRenderFilter(
|
|
1869
|
+
* function postProjectileRenderFilter(projectile: EntityProjectile, renderOffset: Vector): void {}
|
|
1870
1870
|
* ```
|
|
1871
1871
|
*/
|
|
1872
1872
|
POST_PROJECTILE_RENDER_FILTER,
|
|
@@ -1882,7 +1882,7 @@ export enum ModCallbackCustom {
|
|
|
1882
1882
|
* matches the sub-type provided.
|
|
1883
1883
|
*
|
|
1884
1884
|
* ```ts
|
|
1885
|
-
* function postProjectileUpdateFilter(
|
|
1885
|
+
* function postProjectileUpdateFilter(projectile: EntityProjectile): void {}
|
|
1886
1886
|
* ```
|
|
1887
1887
|
*/
|
|
1888
1888
|
POST_PROJECTILE_UPDATE_FILTER,
|