Эта статья документации для всего, что использует платформу Source. Нажмите для получения дополнительной информации.

env_entity_maker

From Valve Developer Community
< Ru
Jump to: navigation, search
English (en)Русский (ru)中文 (zh)Translate (Translate)
Info content.png
This page has not been fully translated.

You can help by finishing the translation.

Also, please make sure the article tries to comply with the alternate languages guide.


Env entity maker.png

env_entity_maker - это точечная энтити(en), доступно для всех игр на движке Source Source.

энтити в центр(en) env_entity_maker. Он может быть создан автоматически или через ввод.

В коде это представлено классом CEnvEntityMaker, определённым в файле env_entity_maker.cpp.

Флаги

  • 1: Enable AutoSpawn - Создаёт энтити где угодно в комнате, в которой хватит места для энтити, и где не смотрит игрок.
  • 2: AutoSpawn: Ждёт энтити для самоуничтожения.
  • 4: AutoSpawn: Создаётся, там, где даже смотрит игрок.
  • 8: ForceSpawn: Создаётся только, если в комнате хватит места для объекта.
  • 16: ForceSpawn: Создаётся, только если игрок не смотрит.

Keyvalues

См. также:  Generic Keyvalues, Inputs and Outputs available to all entities
Name(en) (targetname) <string(en)>
Название объекта по которому другие объекты могут ссылаться на этот объект.
Point_template To Spawn (EntityTemplate) ([todo internal name (i)]) <targetname(en)>
Name of the point_template to spawn here.
PostSpawn Movement Speed (PostSpawnSpeed) ([todo internal name (i)]) <float(en)>
All entities spawned will move this many hammer units(en) per second in the direction of PostSpawn Movement Direction.
PostSpawn Movement Direction (PostSpawnDirection) ([todo internal name (i)]) <angle(en)>
All entities spawned in the template will move in this direction.
PostSpawn Direction Variance (PostSpawnDirectionVariance) ([todo internal name (i)]) <float(en)>
The PostSpawn Movement Direction may vary by this many degrees. This is a radius.
PostSpawn Inherit Angles (PostSpawnInheritAngles) ([todo internal name (i)]) <boolean(en)>
If Yes, offset the spawn angles by the angles of a Parent.

Inputs

ForceSpawn
Spawn an instance of the template at this origin and angle.
ForceSpawnAtEntityOrigin <targetname(en)>
Spawn an instance of the template at the same origin and angles as a specified entity.

Outputs

OnEntitySpawned
Fired when an instance of the entity template has been spawned.
OnEntityFailedSpawn
Fired when a ForceSpawn input failed to spawn the template, either due to lack of space or being in player's view, depending on the spawnflags.