Jump to content

AggrorJorn

Members
  • Posts

    4,816
  • Joined

  • Last visited

Everything posted by AggrorJorn

  1. NIce video gamecreator. couldn't have shown it better.
  2. Will there be any way to flag content? If a user spots an error they often do not report it on the forum. Instead a flag option where you can comment could prove usefull.
  3. What a relaxing environment. Well done.
  4. We have seen a lot of statistics on the forum recently. I thought I'd share some from my Youtube account. The stats below are from the past 365 days, including only videos that are relative to Leadwerks. Geo stats
  5. Really? I remember the 2.3 update introducing Lua and costing around 30 dollars. Purchasing a license for LE 3.0 at its release was 200 dollars for me. Haven't payed anything since, but I don't mind paying for a major version updgrade. I don't mind the option for monthly licenses, as long as you have an option to buy a lifetime license.
  6. Can't find my old files on this unforntunately. Searching in the recast navigation API is the only remaining option for now.
  7. The navmesh updating in those video is using small levels. For a Leadwerks terrain this is probably to heavy. However you can do patch updating which is possible in the C++ version. I will try to find an example from 2 years ago. Ironically this exact same discussion was held 2.5 years ago: http://www.leadwerks.com/werkspace/topic/10911-pathfinding/page__st__20#entry79870
  8. AggrorJorn

    Web Development

    I like the dark theme in the last 3 images. Reminds me of visual studio dark theme.
  9. Hey burgelkat, Just got around to finally trying this out. I think you have the skills to become a good level designer. The maps create a very nice atmosphere. I am interested to see where you are going with this. Always feel free to ask for help. Have you considered adding voice to the character? I did have some trouble where the UI text would interfere with buttons. I noticed that the atmospheric sound, is 3d spatialized at times. Is this on purpose? keep up the good work.
  10. Can you post your original complete script? I think the declaration of the table might be the thing that is causing the issue but without seeing the entire code I am just guessing.
  11. This is pure gold. I love component based behaviour and in C++ I still stick to a similar approach: http://www.leadwerks.com/werkspace/blog/34/entry-1077-component-based-engine-design/ Rick, you did a great job explaining this concept. I would love turning this in to a set of advanced Lua tutorials if that is okey with you Rick. Getting more people enthusiastic about this can create a new wave of usefull scripts since they can be easily chained together.
  12. Try creating the source in the start function instead of the updateworld function. You are creating the source every time you press F. So when you try to stop it, it might not know what to do as it is not playing either. As a matter of fact, it is not doing anything at all.
  13. What is self.torch1:Hidden() returning the second time you press F? What happens when you replace the else segment with the following. Does it get printed? else System:Print("torch is not hidden") self.torch1:Hide() if self.FLsource ~= nil then System:Print("source is not nil") if self.FLsource:GetState() == Source.Playing then self.FLsource:Stop() System:Print("Sound Off") end end end
  14. You are playing the sound instead of the source. Remove that line. Using either updateworld or updatephysics won't make a difference for this code. You can also request the state of the source with GetState() self.source:GetState()==Source.Playing
  15. Ah I understand now. I interpretated your sentence "I have no issue with getting a display list as an option," wrong. I thought you mean it as "I can see that option quit clearly on my screen". I honestly never noticed the tooltips, so I will have to check that out. Thanks for pointing that out.
  16. I think our interpretation of list differs a little . Currently we can only see thumbnails, but I would like to see for a list like the screenshot below:
  17. You do? I must be totally overlooking this then. I can only set a display size. Not at home right now, could you please make a screenshot? Not sure if I see tooltips, but that doesn't really solve the problem of not being able to see the names at once.
  18. three hurrays for component based design.
  19. How complex is the bonestructure of the firearms? Although even, if it were dozens, those kind of transformation calculations should be fairly cheap for the engine. Locking the animation update to the refreshrate should also increase performance. Just for reference: Locking the matrix should be done before any animations are done. Unlocking the matrix should be done after the animations are done. http://www.leadwerks.com/werkspace/page/api-reference/_/entity/entityunlockmatrix-r140
  20. Can we please have the option to display assets as a list. It is really annoying to set the thumbnail to 128 x 128 simply because I can't read the name of a script or model. Making the thumbnails adjustable when using the scrollwheel when the assets tab is focused would be a nice extra, but the list display is a bare necessity in my opinion.
  21. Do you want to set the script via cpp or lua? Cpp Monster->SetScript("Scripts/enemyai.lua");
  22. Very creative genebris.
  23. okay good news and bad news. Good news: Once the basic tutorials for Lua are done, I will pick this up again. Bad news: I made this project on my old computer. I always use bibtbucket for my repositories. The repository was not yet downloaded to my new computer. I cloned the repo to my new computer but found out that it only contained a bare leadwerks project. As it turns out: the code for pathing and beziers was not stored in this repository . Apparently all code resided in a temporary project which I did not store in a repository. Since I though it was just a test project I completely removed it from my old computer before moving to my new computer. *Smashes head against wall. Luckily I know how it works now, so I will have a headstart when rewriting everything.
  24. Never seen that video. Thanks for posting Tim.
  25. I will be honest: I fully expected to see 3d models of Swedish people when I clicked on this topic. Really wondered how you would have captured the essence of a swedish person.
×
×
  • Create New...