HPL3/SOMA/Glossary

From Frictional Wiki
< HPL3‎ | SOMA
Revision as of 14:27, 27 August 2020 by TiMan (talk | contribs) (Created page with "{{stub}} Find explanations of various HPL3 terms here. {{CategoryHeader}} {{CategoryNewcolumn}} == General == *'''Static Object''' - An in-game object which is used only for...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Find explanations of various HPL3 terms here.

General

  • Static Object - An in-game object which is used only for physics collissions. They can't be influenced by scripts.
  • Entity - An in-game object which allows interaction.
  • Prop - A type of entity which can be collected and added to the player's inventory.
  • Area - Invisible in-game cuboid which marks 3D space. Used as an input-output systems for the levels.

Modding

  • Mod - Additional game content created by community members and fans.
  • Custom Story - User-made content available from the game's main menu or from a designated launcher. They use all settings from the config files the game was started with, which limits what the creator can change (for example being forced to use the default lantern). This is the type of creation recommended for beginners.
  • Mod Dependency - A mod which is being used by other mods as a source for content.

Level Design

Scripting

  • Script - Written code which determines what happens in a map. This includes events, puzzles, music, and more.
  • User Module - Script files which always run in the background and usually define the behavior or core mechanics in the game.
  • Handler - A synonym for a User Module.