You've already forked FullScreenPokemon
mirror of
https://github.com/FullScreenShenanigans/FullScreenPokemon.git
synced 2026-04-28 12:58:40 -07:00
c0151e1a3f
MapsHandlr renamed to AreaSpawnr, TS builds upgraded to two-step (source and distribution). Many commented modules.
21 lines
920 B
JavaScript
21 lines
920 B
JavaScript
FullScreenPokemon.FullScreenPokemon.settings.collisions = {
|
|
"groupNames": ["Solid", "Character"],
|
|
"keyGroupName": "groupType",
|
|
"keyTypeName": "title",
|
|
"globalCheckGenerators": {
|
|
"Character": FullScreenPokemon.FullScreenPokemon.prototype.generateCanThingCollide,
|
|
"Solid": FullScreenPokemon.FullScreenPokemon.prototype.generateCanThingCollide
|
|
},
|
|
"hitCheckGenerators": {
|
|
"Character": {
|
|
"Character": FullScreenPokemon.FullScreenPokemon.prototype.generateIsCharacterTouchingCharacter,
|
|
"Solid": FullScreenPokemon.FullScreenPokemon.prototype.generateIsCharacterTouchingSolid
|
|
}
|
|
},
|
|
"hitCallbackGenerators": {
|
|
"Character": {
|
|
"Solid": FullScreenPokemon.FullScreenPokemon.prototype.generateHitCharacterThing,
|
|
"Character": FullScreenPokemon.FullScreenPokemon.prototype.generateHitCharacterThing
|
|
}
|
|
}
|
|
}; |