Sprache Deutsch Language English

Script Dokumentation LS 2015 - NonTabbable (Patch 1.3)

Script Dokumentation Übersicht

scripts/vehicles/specializations/NonTabbable.lua

Copyright (c) 2008-2015 GIANTS Software GmbH, Confidential, All Rights Reserved.
This document is to be published solely by ls-mods.de
1--
2-- NonTabbable
3--
4-- These vehicles cannot be entered by pressing tab
5--
6-- Copyright (C) GIANTS Software GmbH, Confidential, All Rights Reserved.
7
8NonTabbable = {};
9
10function NonTabbable.prerequisitesPresent(specializations)
11 return true;
12end;
13
14function NonTabbable:load(xmlFile)
15 self.nonTabbable = true;
16end;
17
18function NonTabbable:delete()
19end;
20
21function NonTabbable:mouseEvent(posX, posY, isDown, isUp, button)
22end;
23
24function NonTabbable:keyEvent(unicode, sym, modifier, isDown)
25end;
26
27function NonTabbable:update(dt)
28end;
29
30function NonTabbable:draw()
31end;
Copyright (c) 2008-2015 GIANTS Software GmbH, Confidential, All Rights Reserved.
This document is to be published solely by ls-mods.de
Script Dokumentation Übersicht