Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.197
  • Joined

  • Last visited

  • Days Won

    591

Everything posted by Stan`

  1. You could run the game with -conf=rendererbackend:vulkan
  2. @hyperion @vladislavbelov Hey can you share more info about your hardware ? Depends on how you installed the game. https://gitea.wildfiregames.com/0ad/0ad/wiki/GameDataPaths
  3. +1 Once again really nice work @nifa I would add some details on the back, column cracks, maybe some more ivy to make it less clean. For the little entrance with the wooden beams you might have to adjust it so it looks believably high.
  4. Nice work! You seem to have some normal issues. If you're using Blender you might use the reset vectors tool while in edit mode with everything selected. This might fix some buildings/boats looking dark.
  5. Sounds like it warrants a regression ticket
  6. After a discord discussion there are some other options possible, such as tweaking build restrictions. In this case though, it would not be possible to change the passability class number restrictions without touching C++ code.
  7. After some discussions on Discord it would seem his armature was corrupted.
  8. See https://gitea.wildfiregames.com/0ad/0ad/wiki/ExportingErrors Either you have loose vertices or multiple materials, and neither are supported.
  9. Stan`

    Erechtheion

    Transparency should work in baking. You're right about variation, though
  10. Can you test since I gave you some extra rights ?
  11. I've added you to https://gitea.wildfiregames.com/org/0ad/teams/contributors can you try again with the main repo as lfs ?
  12. Just to check you could make the lfs point to your fork instead.
  13. @Itms updated Gitea yesterday could you try again @Cayleb-Ordo
  14. Yeah it's old news now.
  15. Stan`

    Erechtheion

    Usually when baking you should import the actual model.
  16. If you start the campaign automatically there might be a way to force gamesettings.
  17. Stan`

    Erechtheion

    Well it needs to be checked. Usually the least textures the better. They don't need it but it doesn't hurt to try. Also you might get away by tweaking the UV2 to give more space to some stuff.
  18. Well if you have questions do not hesitate Mmh if the map type is scenario and assuming it's correctly set in the XML you shouldn't be able to change it but I'm not sure. Maybe it only applies to civs.
  19. Well you could add it (copy the code) to a modded component and do some stuff on death. With a list of tokens (templates)
  20. To me the title is clear ^^. It's about catching exceptions. Initially that doesn't help performance but makes using threads simpler. (So more things might be moved to another thread in the long run.) To me this ticket was a mega ticket to keep track of all that was to be threaded hence my confusion
  21. Stan`

    Erechtheion

    You can bake at any resolution to get more crisp details. In the game though currently most textures are 1024*1024 and ideally we shouldn't go above this unless you have a 20k tris model. Small items should either have smaller textures, or to reduce fragmentation be baked in the same texture as the main mesh they are used on.
  22. `SpawnEntityOnDeath` Only creates local entities, it's meant for say debris, or an explosion decal. https://gitea.wildfiregames.com/0ad/0ad/src/commit/32edc28cda72d0c9cd70937d7c46c58322bcf040/binaries/data/mods/public/simulation/components/Health.js#L403
  23. Short answer: it depends. On lower end machines, graphics are gonna eat up your GPU causing your CPU to starve. So for those, graphics and model quality will be the bottleneck. Getting the state for unit selection is quite slow as it pulls a lot of data (https://code.wildfiregames.com/D1618). Querying interfaces, (e.g getting a component for an entity) might be faster with better data structures https://code.wildfiregames.com/D1739 / https://code.wildfiregames.com/D4718 Creating entities is a bit slow too IIRC. E.g our upgrade system could use not having to create and destroy entities https://code.wildfiregames.com/D4991 Other hints in patches by wraitii https://code.wildfiregames.com/search/query/1SOtiSQV9ik8/#R This looks interesting https://gitea.wildfiregames.com/0ad/0ad/pulls/8521 OUTDATED but maybe still interesting https://gitea.wildfiregames.com/0ad/0ad/wiki/GamePerformance EDIT: also https://gitea.wildfiregames.com/0ad/0ad/issues/5874 which has a weird title cc @phosit
×
×
  • Create New...