From 842aa878ad62da94c687429b55fbdfa1e513bbef Mon Sep 17 00:00:00 2001 From: FlightControl Date: Sat, 4 Mar 2017 16:02:21 +0100 Subject: [PATCH] EVENTDATA structure was hidden in documentation. --- Moose Development/Moose/Core/Event.lua | 69 ++++++---- docs/Documentation/Cargo.html | 1 - docs/Documentation/Event.html | 175 ++++++++++--------------- docs/Documentation/Spawn.html | 9 +- 4 files changed, 113 insertions(+), 141 deletions(-) diff --git a/Moose Development/Moose/Core/Event.lua b/Moose Development/Moose/Core/Event.lua index cfb7ab4cd..79f68a1e6 100644 --- a/Moose Development/Moose/Core/Event.lua +++ b/Moose Development/Moose/Core/Event.lua @@ -110,7 +110,7 @@ -- -- # 3) EVENTDATA type -- --- The EVENTDATA contains all the fields that are populated with event information before +-- The @{Event#EVENTDATA} structure contains all the fields that are populated with event information before -- an Event Handler method is being called by the event dispatcher. -- The Event Handler received the EVENTDATA object as a parameter, and can be used to investigate further the different events. -- There are basically 4 main categories of information stored in the EVENTDATA structure: @@ -120,6 +120,17 @@ -- * Weapon data: Certain events populate weapon information. -- * Place data: Certain events populate place information. -- +-- --- This function is an Event Handling function that will be called when Tank1 is Dead. +-- -- EventData is an EVENTDATA structure. +-- -- We use the EventData.IniUnit to smoke the tank Green. +-- -- @param Wrapper.Unit#UNIT self +-- -- @param Core.Event#EVENTDATA EventData +-- function Tank1:OnEventDead( EventData ) +-- +-- EventData.IniUnit:SmokeGreen() +-- end +-- +-- -- Find below an overview which events populate which information categories: -- -- ![Objects](..\Presentations\EVENT\Dia14.JPG) @@ -220,35 +231,35 @@ EVENTS = { -- @type EVENTDATA -- @field #number id The identifier of the event. -- --- @field Dcs.DCSUnit#Unit initiator (UNIT/STATIC/SCENERY) The initiating @{Dcs.DCSUnit#Unit} or @{Dcs.DCSStaticObject#StaticObject}. --- @field Dcs.DCSObject#Object.Category IniObjectCategory (UNIT/STATIC/SCENERY) The initiator object category ( Object.Category.UNIT or Object.Category.STATIC ). --- @field Dcs.DCSUnit#Unit IniDCSUnit (UNIT/STATIC) The initiating @{Dcs.DCSUnit#Unit} or @{Dcs.DCSStaticObject#StaticObject}. --- @field #string IniDCSUnitName (UNIT/STATIC) The initiating Unit name. --- @field Wrapper.Unit#UNIT IniUnit (UNIT/STATIC) The initiating MOOSE wrapper @{Wrapper.Unit#UNIT} of the initiator Unit object. --- @field #string IniUnitName (UNIT/STATIC) The initiating UNIT name (same as IniDCSUnitName). --- @field Dcs.DCSGroup#Group IniDCSGroup (UNIT) The initiating {Dcs.DCSGroup#Group}. --- @field #string IniDCSGroupName (UNIT) The initiating Group name. --- @field Wrapper.Group#GROUP IniGroup (UNIT) The initiating MOOSE wrapper @{Wrapper.Group#GROUP} of the initiator Group object. --- @field #string IniGroupName (UNIT) The initiating GROUP name (same as IniDCSGroupName). --- @field #string IniPlayerName (UNIT) The name of the initiating player in case the Unit is a client or player slot. --- @field Dcs.DCScoalition#coalition.side IniCoalition (UNIT) The coalition of the initiator. --- @field Dcs.DCSUnit#Unit.Category IniCategory (UNIT) The category of the initiator. --- @field #string IniTypeName (UNIT) The type name of the initiator. +-- @field Dcs.DCSUnit#Unit initiator (UNIT/STATIC/SCENERY) The initiating @{Dcs.DCSUnit#Unit} or @{Dcs.DCSStaticObject#StaticObject}. +-- @field Dcs.DCSObject#Object.Category IniObjectCategory (UNIT/STATIC/SCENERY) The initiator object category ( Object.Category.UNIT or Object.Category.STATIC ). +-- @field Dcs.DCSUnit#Unit IniDCSUnit (UNIT/STATIC) The initiating @{DCSUnit#Unit} or @{DCSStaticObject#StaticObject}. +-- @field #string IniDCSUnitName (UNIT/STATIC) The initiating Unit name. +-- @field Wrapper.Unit#UNIT IniUnit (UNIT/STATIC) The initiating MOOSE wrapper @{Unit#UNIT} of the initiator Unit object. +-- @field #string IniUnitName (UNIT/STATIC) The initiating UNIT name (same as IniDCSUnitName). +-- @field Dcs.DCSGroup#Group IniDCSGroup (UNIT) The initiating {DCSGroup#Group}. +-- @field #string IniDCSGroupName (UNIT) The initiating Group name. +-- @field Wrapper.Group#GROUP IniGroup (UNIT) The initiating MOOSE wrapper @{Group#GROUP} of the initiator Group object. +-- @field #string IniGroupName UNIT) The initiating GROUP name (same as IniDCSGroupName). +-- @field #string IniPlayerName (UNIT) The name of the initiating player in case the Unit is a client or player slot. +-- @field Dcs.DCScoalition#coalition.side IniCoalition (UNIT) The coalition of the initiator. +-- @field Dcs.DCSUnit#Unit.Category IniCategory (UNIT) The category of the initiator. +-- @field #string IniTypeName (UNIT) The type name of the initiator. -- --- @field Dcs.DCSUnit#Unit target (UNIT/STATIC) The target @{Dcs.DCSUnit#Unit} or @{Dcs.DCSStaticObject#StaticObject}. --- @field Dcs.DCSObject#Object.Category TgtObjectCategory (UNIT/STATIC) The target object category ( Object.Category.UNIT or Object.Category.STATIC ). --- @field Dcs.DCSUnit#Unit TgtDCSUnit (UNIT/STATIC) The target @{Dcs.DCSUnit#Unit} or @{Dcs.DCSStaticObject#StaticObject}. --- @field #string TgtDCSUnitName (UNIT/STATIC) The target Unit name. --- @field Wrapper.Unit#UNIT TgtUnit (UNIT/STATIC) The target MOOSE wrapper @{Wrapper.Unit#UNIT} of the target Unit object. --- @field #string TgtUnitName (UNIT/STATIC) The target UNIT name (same as TgtDCSUnitName). --- @field Dcs.DCSGroup#Group TgtDCSGroup (UNIT) The target {Dcs.DCSGroup#Group}. --- @field #string TgtDCSGroupName (UNIT) The target Group name. --- @field Wrapper.Group#GROUP TgtGroup (UNIT) The target MOOSE wrapper @{Wrapper.Group#GROUP} of the target Group object. --- @field #string TgtGroupName (UNIT) The target GROUP name (same as TgtDCSGroupName). --- @field #string TgtPlayerName (UNIT) The name of the target player in case the Unit is a client or player slot. --- @field Dcs.DCScoalition#coalition.side TgtCoalition (UNIT) The coalition of the target. --- @field Dcs.DCSUnit#Unit.Category TgtCategory (UNIT) The category of the target. --- @field #string TgtTypeName (UNIT) The type name of the target. +-- @field Dcs.DCSUnit#Unit target (UNIT/STATIC) The target @{Dcs.DCSUnit#Unit} or @{DCSStaticObject#StaticObject}. +-- @field Dcs.DCSObject#Object.Category TgtObjectCategory (UNIT/STATIC) The target object category ( Object.Category.UNIT or Object.Category.STATIC ). +-- @field Dcs.DCSUnit#Unit TgtDCSUnit (UNIT/STATIC) The target @{DCSUnit#Unit} or @{DCSStaticObject#StaticObject}. +-- @field #string TgtDCSUnitName (UNIT/STATIC) The target Unit name. +-- @field Wrapper.Unit#UNIT TgtUnit (UNIT/STATIC) The target MOOSE wrapper @{Unit#UNIT} of the target Unit object. +-- @field #string TgtUnitName (UNIT/STATIC) The target UNIT name (same as TgtDCSUnitName). +-- @field Dcs.DCSGroup#Group TgtDCSGroup (UNIT) The target {DCSGroup#Group}. +-- @field #string TgtDCSGroupName (UNIT) The target Group name. +-- @field Wrapper.Group#GROUP TgtGroup (UNIT) The target MOOSE wrapper @{Group#GROUP} of the target Group object. +-- @field #string TgtGroupName (UNIT) The target GROUP name (same as TgtDCSGroupName). +-- @field #string TgtPlayerName (UNIT) The name of the target player in case the Unit is a client or player slot. +-- @field Dcs.DCScoalition#coalition.side TgtCoalition (UNIT) The coalition of the target. +-- @field Dcs.DCSUnit#Unit.Category TgtCategory (UNIT) The category of the target. +-- @field #string TgtTypeName (UNIT) The type name of the target. -- -- @field weapon The weapon used during the event. -- @field Weapon diff --git a/docs/Documentation/Cargo.html b/docs/Documentation/Cargo.html index efcd3f237..59202c294 100644 --- a/docs/Documentation/Cargo.html +++ b/docs/Documentation/Cargo.html @@ -2425,7 +2425,6 @@ The UNIT carrying the package.

- AI_CARGO_UNIT.CargoCarrier diff --git a/docs/Documentation/Event.html b/docs/Documentation/Event.html index 791e6382f..ee3be77c5 100644 --- a/docs/Documentation/Event.html +++ b/docs/Documentation/Event.html @@ -191,18 +191,29 @@ Always ensure that your event handling methods align with the events being subsc

3) EVENTDATA type

-

The EVENTDATA contains all the fields that are populated with event information before +

The Event#EVENTDATA structure contains all the fields that are populated with event information before an Event Handler method is being called by the event dispatcher. The Event Handler received the EVENTDATA object as a parameter, and can be used to investigate further the different events. There are basically 4 main categories of information stored in the EVENTDATA structure:

    -
  • Initiator Unit data: Several fields documenting the initiator unit related to the event.
  • -
  • Target Unit data: Several fields documenting the target unit related to the event.
  • -
  • Weapon data: Certain events populate weapon information.
  • -
  • Place data: Certain events populate place information.
  • +
  • Initiator Unit data: Several fields documenting the initiator unit related to the event.

  • +
  • Target Unit data: Several fields documenting the target unit related to the event.

  • +
  • Weapon data: Certain events populate weapon information.

  • +
  • Place data: Certain events populate place information.

    + +

    --- This function is an Event Handling function that will be called when Tank1 is Dead. + -- EventData is an EVENTDATA structure. + -- We use the EventData.IniUnit to smoke the tank Green. + -- @param Wrapper.Unit#UNIT self + -- @param Core.Event#EVENTDATA EventData + function Tank1:OnEventDead( EventData )

    + +

    EventData.IniUnit:SmokeGreen() + end

+

Find below an overview which events populate which information categories:

Objects

@@ -591,55 +602,49 @@ YYYY-MM-DD: CLASS:NewFunction( Params ) added

EVENTDATA.IniCategory -
  (UNIT) The category of the initiator.
-
+

(UNIT) The category of the initiator.

EVENTDATA.IniCoalition -
 (UNIT) The coalition of the initiator.
-
+

(UNIT) The coalition of the initiator.

EVENTDATA.IniDCSGroup -
  (UNIT) The initiating {Dcs.DCSGroup#Group}.
-
+

(UNIT) The initiating {DCSGroup#Group}.

EVENTDATA.IniDCSGroupName -

(UNIT) The initiating Group name.

+

(UNIT) The initiating Group name.

EVENTDATA.IniDCSUnit -
   (UNIT/STATIC) The initiating <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC) The initiating DCSUnit#Unit or DCSStaticObject#StaticObject.

EVENTDATA.IniDCSUnitName -

(UNIT/STATIC) The initiating Unit name.

+

(UNIT/STATIC) The initiating Unit name.

EVENTDATA.IniGroup -
     (UNIT) The initiating MOOSE wrapper <a href="Wrapper.Group.html##(GROUP)">Wrapper.Group#GROUP</a> of the initiator Group object.
-
+

(UNIT) The initiating MOOSE wrapper Group#GROUP of the initiator Group object.

EVENTDATA.IniGroupName -
 (UNIT) The initiating GROUP name (same as IniDCSGroupName).
-
+

UNIT) The initiating GROUP name (same as IniDCSGroupName).

@@ -651,120 +656,105 @@ YYYY-MM-DD: CLASS:NewFunction( Params ) added

EVENTDATA.IniPlayerName -
(UNIT) The name of the initiating player in case the Unit is a client or player slot.
-
+

(UNIT) The name of the initiating player in case the Unit is a client or player slot.

EVENTDATA.IniTypeName -
  (UNIT) The type name of the initiator.
-
+

(UNIT) The type name of the initiator.

EVENTDATA.IniUnit -
      (UNIT/STATIC) The initiating MOOSE wrapper <a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a> of the initiator Unit object.
-
+

(UNIT/STATIC) The initiating MOOSE wrapper Unit#UNIT of the initiator Unit object.

EVENTDATA.IniUnitName -
  (UNIT/STATIC) The initiating UNIT name (same as IniDCSUnitName).
-
+

(UNIT/STATIC) The initiating UNIT name (same as IniDCSUnitName).

EVENTDATA.TgtCategory -
  (UNIT) The category of the target.
-
+

(UNIT) The category of the target.

EVENTDATA.TgtCoalition -
 (UNIT) The coalition of the target.
-
+

(UNIT) The coalition of the target.

EVENTDATA.TgtDCSGroup -
  (UNIT) The target {Dcs.DCSGroup#Group}.
-
+

(UNIT) The target {DCSGroup#Group}.

EVENTDATA.TgtDCSGroupName -

(UNIT) The target Group name.

+

(UNIT) The target Group name.

EVENTDATA.TgtDCSUnit -
   (UNIT/STATIC) The target <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC) The target DCSUnit#Unit or DCSStaticObject#StaticObject.

EVENTDATA.TgtDCSUnitName -

(UNIT/STATIC) The target Unit name.

+

(UNIT/STATIC) The target Unit name.

EVENTDATA.TgtGroup -
     (UNIT) The target MOOSE wrapper <a href="Wrapper.Group.html##(GROUP)">Wrapper.Group#GROUP</a> of the target Group object.
-
+

(UNIT) The target MOOSE wrapper Group#GROUP of the target Group object.

EVENTDATA.TgtGroupName -
 (UNIT) The target GROUP name (same as TgtDCSGroupName).
-
+

(UNIT) The target GROUP name (same as TgtDCSGroupName).

EVENTDATA.TgtObjectCategory -
  (UNIT/STATIC) The target object category ( Object.Category.UNIT or Object.Category.STATIC ).
-
+

(UNIT/STATIC) The target object category ( Object.Category.UNIT or Object.Category.STATIC ).

EVENTDATA.TgtPlayerName -
(UNIT) The name of the target player in case the Unit is a client or player slot.
-
+

(UNIT) The name of the target player in case the Unit is a client or player slot.

EVENTDATA.TgtTypeName -
  (UNIT) The type name of the target.
-
+

(UNIT) The type name of the target.

EVENTDATA.TgtUnit -
      (UNIT/STATIC) The target MOOSE wrapper <a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a> of the target Unit object.
-
+

(UNIT/STATIC) The target MOOSE wrapper Unit#UNIT of the target Unit object.

EVENTDATA.TgtUnitName -
  (UNIT/STATIC) The target UNIT name (same as TgtDCSUnitName).
-
+

(UNIT/STATIC) The target UNIT name (same as TgtDCSUnitName).

@@ -795,15 +785,13 @@ YYYY-MM-DD: CLASS:NewFunction( Params ) added

EVENTDATA.initiator -
    (UNIT/STATIC/SCENERY) The initiating <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC/SCENERY) The initiating Dcs.DCSUnit#Unit or Dcs.DCSStaticObject#StaticObject.

EVENTDATA.target -
       (UNIT/STATIC) The target <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC) The target Dcs.DCSUnit#Unit or DCSStaticObject#StaticObject.

@@ -2584,8 +2572,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT) The category of the initiator.
-
+

(UNIT) The category of the initiator.

@@ -2599,8 +2586,7 @@ Note that at the beginning of each field description, there is an indication whi
-
 (UNIT) The coalition of the initiator.
-
+

(UNIT) The coalition of the initiator.

@@ -2614,8 +2600,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT) The initiating {Dcs.DCSGroup#Group}.
-
+

(UNIT) The initiating {DCSGroup#Group}.

@@ -2629,7 +2614,7 @@ Note that at the beginning of each field description, there is an indication whi
-

(UNIT) The initiating Group name.

+

(UNIT) The initiating Group name.

@@ -2643,8 +2628,7 @@ Note that at the beginning of each field description, there is an indication whi
-
   (UNIT/STATIC) The initiating <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC) The initiating DCSUnit#Unit or DCSStaticObject#StaticObject.

@@ -2658,7 +2642,7 @@ Note that at the beginning of each field description, there is an indication whi
-

(UNIT/STATIC) The initiating Unit name.

+

(UNIT/STATIC) The initiating Unit name.

@@ -2672,8 +2656,7 @@ Note that at the beginning of each field description, there is an indication whi
-
     (UNIT) The initiating MOOSE wrapper <a href="Wrapper.Group.html##(GROUP)">Wrapper.Group#GROUP</a> of the initiator Group object.
-
+

(UNIT) The initiating MOOSE wrapper Group#GROUP of the initiator Group object.

@@ -2687,8 +2670,7 @@ Note that at the beginning of each field description, there is an indication whi
-
 (UNIT) The initiating GROUP name (same as IniDCSGroupName).
-
+

UNIT) The initiating GROUP name (same as IniDCSGroupName).

@@ -2716,8 +2698,7 @@ Note that at the beginning of each field description, there is an indication whi
-
(UNIT) The name of the initiating player in case the Unit is a client or player slot.
-
+

(UNIT) The name of the initiating player in case the Unit is a client or player slot.

@@ -2731,8 +2712,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT) The type name of the initiator.
-
+

(UNIT) The type name of the initiator.

@@ -2747,8 +2727,7 @@ Note that at the beginning of each field description, there is an indication whi
-
      (UNIT/STATIC) The initiating MOOSE wrapper <a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a> of the initiator Unit object.
-
+

(UNIT/STATIC) The initiating MOOSE wrapper Unit#UNIT of the initiator Unit object.

@@ -2762,8 +2741,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT/STATIC) The initiating UNIT name (same as IniDCSUnitName).
-
+

(UNIT/STATIC) The initiating UNIT name (same as IniDCSUnitName).

@@ -2777,8 +2755,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT) The category of the target.
-
+

(UNIT) The category of the target.

@@ -2792,8 +2769,7 @@ Note that at the beginning of each field description, there is an indication whi
-
 (UNIT) The coalition of the target.
-
+

(UNIT) The coalition of the target.

@@ -2807,8 +2783,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT) The target {Dcs.DCSGroup#Group}.
-
+

(UNIT) The target {DCSGroup#Group}.

@@ -2822,7 +2797,7 @@ Note that at the beginning of each field description, there is an indication whi
-

(UNIT) The target Group name.

+

(UNIT) The target Group name.

@@ -2836,8 +2811,7 @@ Note that at the beginning of each field description, there is an indication whi
-
   (UNIT/STATIC) The target <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC) The target DCSUnit#Unit or DCSStaticObject#StaticObject.

@@ -2851,7 +2825,7 @@ Note that at the beginning of each field description, there is an indication whi
-

(UNIT/STATIC) The target Unit name.

+

(UNIT/STATIC) The target Unit name.

@@ -2865,8 +2839,7 @@ Note that at the beginning of each field description, there is an indication whi
-
     (UNIT) The target MOOSE wrapper <a href="Wrapper.Group.html##(GROUP)">Wrapper.Group#GROUP</a> of the target Group object.
-
+

(UNIT) The target MOOSE wrapper Group#GROUP of the target Group object.

@@ -2880,8 +2853,7 @@ Note that at the beginning of each field description, there is an indication whi
-
 (UNIT) The target GROUP name (same as TgtDCSGroupName).
-
+

(UNIT) The target GROUP name (same as TgtDCSGroupName).

@@ -2895,8 +2867,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT/STATIC) The target object category ( Object.Category.UNIT or Object.Category.STATIC ).
-
+

(UNIT/STATIC) The target object category ( Object.Category.UNIT or Object.Category.STATIC ).

@@ -2910,8 +2881,7 @@ Note that at the beginning of each field description, there is an indication whi
-
(UNIT) The name of the target player in case the Unit is a client or player slot.
-
+

(UNIT) The name of the target player in case the Unit is a client or player slot.

@@ -2925,8 +2895,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT) The type name of the target.
-
+

(UNIT) The type name of the target.

@@ -2941,8 +2910,7 @@ Note that at the beginning of each field description, there is an indication whi
-
      (UNIT/STATIC) The target MOOSE wrapper <a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a> of the target Unit object.
-
+

(UNIT/STATIC) The target MOOSE wrapper Unit#UNIT of the target Unit object.

@@ -2956,8 +2924,7 @@ Note that at the beginning of each field description, there is an indication whi
-
  (UNIT/STATIC) The target UNIT name (same as TgtDCSUnitName).
-
+

(UNIT/STATIC) The target UNIT name (same as TgtDCSUnitName).

@@ -3025,8 +2992,7 @@ Note that at the beginning of each field description, there is an indication whi
-
    (UNIT/STATIC/SCENERY) The initiating <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC/SCENERY) The initiating Dcs.DCSUnit#Unit or Dcs.DCSStaticObject#StaticObject.

@@ -3040,8 +3006,7 @@ Note that at the beginning of each field description, there is an indication whi
-
       (UNIT/STATIC) The target <a href="Dcs.DCSUnit.html##(Unit)">Dcs.DCSUnit#Unit</a> or <a href="Dcs.DCSStaticObject.html##(StaticObject)">Dcs.DCSStaticObject#StaticObject</a>.
-
+

(UNIT/STATIC) The target Dcs.DCSUnit#Unit or DCSStaticObject#StaticObject.

diff --git a/docs/Documentation/Spawn.html b/docs/Documentation/Spawn.html index ef48ceb81..0eb4ade3e 100644 --- a/docs/Documentation/Spawn.html +++ b/docs/Documentation/Spawn.html @@ -1765,9 +1765,6 @@ The group that was spawned. You can use this group for further actions.

- -

Don't repeat the group from Take-Off till Landing and back Take-Off by ReSpawning.

-
@@ -2242,7 +2239,7 @@ when nothing was spawned.

- #number + SPAWN.SpawnMaxGroups @@ -2259,7 +2256,7 @@ when nothing was spawned.

- #number + SPAWN.SpawnMaxUnitsAlive @@ -2562,7 +2559,7 @@ Spawn_BE_KA50 = SPAWN:New( 'BE KA-50@RAMP-Ground Defense' ):Schedule( 600, 0.5 ) -

Flag that indicates if all the Groups of the SpawnGroup need to be visible when Spawned.

+

When the first Spawn executes, all the Groups need to be made visible before start.