-- -- @author Ausblendung = {}; function Ausblendung.prerequisitesPresent(specializations) return true end; function Ausblendung:load(xmlFile) self.Ausblendungen = Utils.indexToObject(self.components, getXMLString(xmlFile, "vehicle.Ausblendungsteil#Teilindex")); end; function Ausblendung:delete() end; function Ausblendung:mouseEvent(posX, posY, isDown, isUp, button) end; function Ausblendung:keyEvent(unicode, sym, modifier, isDown) end; function Ausblendung:draw() end; function Ausblendung:update(dt) if self:getIsActiveForInput() then if self.Ausblendungen ~= nil then if InputBinding.hasEvent(InputBinding.Ausblendkey) then toggleVisibility(self.Ausblendungen); end; end; end; end;