Jump to content

josk

Members
  • Posts

    567
  • Joined

  • Last visited

Posts posted by josk

  1. Created projects fine now, just been away from it for a bit. I think i'm rusty.

     

    Still a problem with assets from old projects.

    The assets seem to be loading but are not visible, I get

     

    Loading shader "C:/Leadwerks/Projects/game/Shaders/Model/default.shader"...

    Error: Failed to load shader "C:/Leadwerks/Projects/game/Shaders/Model/default.shader"

    etc in the output window.

     

    If I hover the mouse over the asset window I can see the name of models/textures but nothing is visible.

  2. Running from Steam I find its trying to load stuff from my old installation of Leadwerks 3, (didn't want to delete yet) so getting errors. I think its a case of changing the path but cant find the right path at the moment.

     

    Ignore I just needed to import MYGAME throught the project manager. It was trying to load an old map.rolleyes.gif

  3. I used the following for a high score table.

     

    
    

    local path = "MyFile.txt"

    local stream = FileSystem:OpenFile(path)

    if (stream) then

    stream:WriteFloat(HighScore)

    stream:Seek(0)

    stream:Release()

    end

  4. I find personally Lua easier than Unity Script but thats maybe because Unity seems more complicated than it is.

     

    I have tried other engines and do like Unity but choose Leadwerks. I wont name all the engines i have tried but I am your typical hobby coder like yourself, Never gets anything done smile.png

×
×
  • Create New...