GearMessages.wiki
changeset 1250 d8f26186f4e5
parent 1242 c307fe8fb975
child 1705 39af8c72daef
equal deleted inserted replaced
1249:e169ba5aeb07 1250:d8f26186f4e5
    19 || `gmAnimate` || Start animation || Used. ||
    19 || `gmAnimate` || Start animation || Used. ||
    20 || `gmPrecise` || Precise || _Not used._ ||
    20 || `gmPrecise` || Precise || _Not used._ ||
    21 || `gmRemoveFromList` || Remove from gear list || _Not used._ ||
    21 || `gmRemoveFromList` || Remove from gear list || _Not used._ ||
    22 || `gmAddToList` || Insert in gear list || _Not used._ ||
    22 || `gmAddToList` || Insert in gear list || _Not used._ ||
    23 || `gmDelete` || Delete gear || _Not used._ ||
    23 || `gmDelete` || Delete gear || _Not used._ ||
    24 || `gmAllStoppable` || Bitwise OR of `gmLeft`, `gmRight`, `gmUp`, `gmDown` `gmAttack` and `gmPrecise` ||_Not used._ ||
    24 || `gmAllStoppable` || Bitwise OR of `gmLeft`, `gmRight`, `gmUp`, `gmDown`, `gmAttack` and `gmPrecise` ||_Not used._ ||
    25 
    25 
    26 `gmAddToList` and `gmRemoveFromList` are intended for use by the engine when changing order of gears in the list.  It is not recommended that Lua changes these, and at present they are used together when changing a gear's Z (drawing order). For example, if Lua sets `gmRemoveFromList`, it would cause a leak of the gear, since Lua would no longer be able to restore it. Setting both together would have no effect since Lua cannot at present change Z.
    26 `gmAddToList` and `gmRemoveFromList` are intended for use by the engine when changing order of gears in the list.  It is not recommended that Lua changes these, and at present they are used together when changing a gear's Z (drawing order). For example, if Lua sets `gmRemoveFromList`, it would cause a leak of the gear, since Lua would no longer be able to restore it. Setting both together would have no effect since Lua cannot at present change Z.
    27 
    27 
    28 See https://hg.hedgewars.org/hedgewars/file/default/hedgewars/uConsts.pas (search for "gear messages") for a current list.
    28 See https://hg.hedgewars.org/hedgewars/file/default/hedgewars/uConsts.pas (search for "gear messages") for a current list.