xRGamingx Posted September 8, 2016 Share Posted September 8, 2016 Tengo un problema cuando hago un mapa, los objetos desaparecen y aparecen, porque pasa eso ? ayuda Link to comment
aka Blue Posted September 8, 2016 Share Posted September 8, 2016 ¿Usas mapa en .lua o .map? Link to comment
xRGamingx Posted September 8, 2016 Author Share Posted September 8, 2016 uso el mapa editor comun! con eso creo mis mapa http://subefotos.com/ver/?5a828a5285cc84bc6d97209d4df9c18bo.png Link to comment
aka Blue Posted September 9, 2016 Share Posted September 9, 2016 (edited) Crea un archivo cliente e introduce ésto dentro: addEventHandler ( "onClientResourceStart", root, function ( ) local objects = getElementsByType( 'object' ) for i=1, #objects do local v = objects[ i ] local model = getElementModel( v ) engineSetModelLODDistance ( v, 220 ) setFarClipDistance( 4000 ) setOcclusionsEnabled ( false ) end end ) Edited September 9, 2016 by aka Blue Link to comment
xRGamingx Posted September 9, 2016 Author Share Posted September 9, 2016 Gracias!! si funciono, no debo ponerle un archivo, server ? Link to comment
aka Blue Posted September 9, 2016 Share Posted September 9, 2016 No, no es necesario. Eso es cliente, ya que engineSetModelLODDistance es una función client-side y te ahorras el trigger de servidor-cliente con ese archivo. Link to comment
xRGamingx Posted September 9, 2016 Author Share Posted September 9, 2016 Dal e gracias amigo !Mil gracias. Link to comment
Recommended Posts