Difference between revisions of "HPL2/AMFP/NewEntities"
Line 96: | Line 96: | ||
== AnimatedProp == | == AnimatedProp == | ||
This type doesn't seem to have any particular use. It is unclear why it was added, as''.dae'' with animations will play automatically anyway, and <code>PlayPropAnimation()</code> isn't used with AnimatedProps. | This type doesn't seem to have any particular use. It is unclear why it was added, as''.dae'' with animations will play automatically anyway, and <code>PlayPropAnimation()</code> isn't used with AnimatedProps. | ||
+ | |||
+ | {|class=wikitable | ||
+ | |+Instance Vars | ||
+ | ! Name !! Type !! Default !! Description | ||
+ | |- | ||
+ | | CastShadows || Bool || true || If entity casts shadows. | ||
+ | |- | ||
+ | | IsAffectedByDecal || Bool || true || If decals can be created on entity. | ||
+ | |- | ||
+ | |} | ||
+ | |||
== VoiceFlashbackTrigger == | == VoiceFlashbackTrigger == | ||
Revision as of 01:38, 13 January 2025
Contents
New Entity Types
MFP features a few new entity types.
PhoneBox
The entity which executes phone calls. There's only one such asset in the game, and the entity file doesn't have any type vars (User Defined Variables). However, in the Level Editor, it has multiple instance vars.
Name | Type | Default | Description |
---|---|---|---|
VoiceFile1 | File (.ogg) | The sound file to play. The file has to be located in the sounds folder or one of its subfolders. | |
TextEntry1 | String | First subtitle lang entry. Category must be 'Voice'. | |
Delay1 | Float | 0 | Time until the first subtitle is displayed. |
TextEntry2 | String | Second subtitle lang entry. Category must be 'Voice'. | |
Delay2 | Float | 0 | Time until the second subtitle is displayed. |
TextEntry3 | String | Third subtitle lang entry. Category must be 'Voice'. | |
Delay3 | Float | 0 | Time until the third subtitle is displayed. |
TextEntry4 | String | Fourth subtitle lang entry. Category must be 'Voice'. | |
Delay4 | Float | 0 | Time until the fourth subtitle is displayed. |
TextEntry5 | String | Fifth subtitle lang entry. Category must be 'Voice'. | |
Delay5 | Float | 0 | Time until the fifth subtitle is displayed. |
TextEntry6 | String | Sixth subtitle lang entry. Category must be 'Voice'. | |
Delay6 | Float | 0 | Time until the sixth subtitle is displayed. |
TextEntry7 | String | Seventh subtitle lang entry. Category must be 'Voice'. | |
Delay7 | Float | 0 | Time until the seventh subtitle is displayed. |
Not all 7 entries must be used, but there can't be more than that in a single phonecall.
The PhoneBox entity has two dedicated functions for it:
void StartPhoneRinging(string &in asPhonebox);
void StopPhoneRinging(string &in asPhonebox);
- asPhonebox - The phone box entity to use.
The PhoneBox won't ring until the StartPhoneRinging
function is called. StopPhoneRinging
can be used if the player leaves an area without picking up the phone, or takes too long.
When StartPhoneRinging
is used, the PhoneBox will start ringing (the sound is only audible at a quite short distance, and a bell animation will play). A unique crosshair when looking at the PhoneBox. Interacting with it will play a switch animation as well as the voice file, and display all the defined subtitles at specified intervals. After the voice file finishes playing, another switch animation will play and the glow will disappear (if it was used).
Keep in mind that the green light which appears on the PhoneBox is not a part of the entity; it's a Lamp entity which needs to be enabled by scripting.
Enemy_ManPig
This enemy type has multiple new settings in the LevelEditor. They are all documented in the editor hover-hints, but some of them require additional explanations:
- Hallucination - uses enemy_hallucination_disappear.snt, which isn't in the game files but could be modded in. The hallucination effect now consist of some organic particles instead of the TDD dust particle.
- Pose - determines whether the enemy will move and attack upright or on all fours.
- ThreatenOnAlert - if ticked, the enemy will play an additional animation before chasing/fleeing from the player.
- FleeFromPlayer - the enemy will run away when it notices the player. Running to the furthest pathnode seems to be the main behaviour. The monster will still attack if the player comes too close or encounters the monster after it fled.

- AutoDisableAfterFlee - if the monster flees and can't be seen by the player anymore, it will disappear.
- IdleBehaviour - determines what the enemy does when not engaged or patrolling (or when there are no patrol nodes left to walk to). Options are:
- None - the enemy will stand in place.
- Stalk - the enemy will walk and on occassions run from node to node, sometimes also pausing along the way.
- Track - unspecified behaviour. Might be broken, unfinished, or dependant on particular circumstances. Testing resulted in same behaviour as None.
Enemy_Child
It is an enemy variation used for acting out scenes. It has some of the Pig enemy settings. However, most of them seem to have no effects.
This "enemy" doesn't seem to respond to any player input, asides from proximity.
It also has a lot of Level Editor settings (statements marked with (?) marks haven't been confirmed):
- AutoRemoveAtPathEnd - If enemy should be removed when it reaches the end of the path.
- AutoReverseAtPathEnd - If enemy should turn around (?) when it reaches the end of the path.
- IsOccluder - function unknown, possibly related to rendering or lighting
- AutoRemoveMinPlayerDistance - At what distance from the player to remove the NPC (?)
- Invisible, Blind, Deaf - don't seem to have any effect.
- DamageMul - Doesn't seem to be useful since Child NPCs don't even have attack animations.
- RunSpeedMul - Multiplier; how many times faster than in the entities' settings (?) should the enemy run
- PatrolMoveSpeed - Whether this NPC walks or runs along its patrol. One of the few ManPig settings which has actual effects in this entity type.
AnimatedProp
This type doesn't seem to have any particular use. It is unclear why it was added, as.dae with animations will play automatically anyway, and PlayPropAnimation()
isn't used with AnimatedProps.
Name | Type | Default | Description |
---|---|---|---|
CastShadows | Bool | true | If entity casts shadows. |
IsAffectedByDecal | Bool | true | If decals can be created on entity. |
VoiceFlashbackTrigger
It's the type of all entities from entities/voice_triggers. It seems that these entities weren't used in any of the maps, which makes this entity type unrestorable.
