LeandroZ Posted January 30, 2019 Share Posted January 30, 2019 Galera tem como colocar um marker pra deletar so um tipo de veiculo tipo so o id 416 qnd ele passar em cima so o veiculo id 416 e deletado e os outros q passar nao Link to comment
DNL291 Posted January 31, 2019 Share Posted January 31, 2019 Por favor, crie o post na seção Portuguese / Português da próxima vez. Essa seção é apenas para a linguagem inglesa. Sobre o seu problema: addEventHandler( "onMarkerHit", marker, function ( hitElement ) if getElementModel(vehicle) == 416 then -- verificando se o id do veículo é 416 destroyElement(vehicle) end end ) Link to comment
Other Languages Moderators Lord Henry Posted January 31, 2019 Other Languages Moderators Share Posted January 31, 2019 11 hours ago, DNL291 said: (code) Vai dar erro pois vehicle não foi declarado em lugar nenhum. addEventHandler ("onMarkerHit", marker, function (hitElement) if (getElementType (hitElement) == "vehicle") then -- Se o elemento que colidiu no marker for um veículo, então: if (getElementModel (hitElement) == 416) then -- Se o id do veículo que colidiu no marker for 416, então: destroyElement (hitElement) -- Destrói o veículo. end end end) Obs: Considerando que vc já criou o marker antes com createMarker. Link to comment
DNL291 Posted January 31, 2019 Share Posted January 31, 2019 Minha intenção foi só deixar a verificação com o getElementModel, por isso eu usei os valores genéricos vehicle e marker. Também vai precisar verificar se o veículo tem motorista (getVehicleController). Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now