❄️🎁⛄ The Winter Games Tournament is Live! 🎄🎅❄️
Jump to content

Josh

Staff
  • Posts

    26,869
  • Joined

  • Last visited

Profile Information

  • Location
    USA

Recent Profile Visitors

1,528,923 profile views

Josh's Achievements

Grand Master

Grand Master (14/14)

  • Well Followed
  • Dedicated
  • Conversation Starter
  • Reacting Well
  • Problem Solver

Recent Badges

17.2k

Reputation

1.3k

Community Answers

  1. Josh

    Get an Object

    https://www.leadwerks.com/learn/Scene_GetEntity
  2. Josh

    No contents

    Sorry about that. This is a rare situation that will happen if I accidentally forget a comma when I am editing the TOC json file. It's fixed now.
  3. What kind of code backup system are you using in your current primary Leadwerks project?
      • 2
      • Confused
  4. Josh

    Bullets

    Dropbox, Google drive, whatever you have.
  5. Docs are updated.
  6. Docs are updated, wait for cache refresh
  7. Josh

    Bullets

    Is it possible to upload this project, with instructions how I can make the error occur?
  8. Josh

    Physics

    There is a table here: https://www.leadwerks.com/learn/Entity_SetCollisionType
  9. The default game template is set up with a menu that allows the user to enable or disable different post-processing effects. This is more similar to how most games actually work, where post-processing effects are treated as a quality setting the user adjusts.
  10. Josh

    Bazzite

    Most Linux problems stem from an obsession with saving drive space, and a failure to differentiate between system and application code. They want programs to load common functionality from shared libraries that are stored in the system files, but these libraries are constantly changing and breaking programs. It makes no sense. There's an easy solution, and that is to just place the required library files (in .so format) in the same folder as your program, and use a launcher script to tell the system to load the shared libraries from the same folder: export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./myprogram This should really just be the default behavior, like it is on Windows.
  11. Hi, can you tell me what graphics card you have?
  12. Josh

    Camera

    The variable you have is probably an Entity object, and you need to cast it to a Camera object: local camera = Camera(self) if camera ~= nil then coord.z = self.camera:GetRange().y farpoint = self.camera:ScreenToWorld(coord, framebuffer) end
  13. The problem had to do with extra NULL collision shapes being created in the physics thread. It will be fixed in the next build that goes up on the beta branch.
  14. Josh

    Bazzite

    Yes, but just because you add a shortcut in the task bar doesn't mean the program works on Linux.
  15. Josh

    Bazzite

    Linux Mint is really good. You can actually replace Windows with this.
×
×
  • Create New...