-
Posts
18.121 -
Joined
-
Last visited
-
Days Won
587
Everything posted by Stan`
-
What are your favorite songs in 0 A.D.?
Stan` replied to ShadowOfHassen's topic in General Discussion
@Samulis made 24 of the 26 that were added in A26 -
Did you pull lfs assets ?
-
When it breaks™. Basically each new version you need to check if the file was changed. You can go on Gitea to see the last modification dates and see what changed by looking at the commit message. Each release has two pages. A list of major changes and a small porting guide. https://gitea.wildfiregames.com/0ad/0ad/wiki/Alpha27 You can help by enriching the later https://gitea.wildfiregames.com/0ad/0ad/wiki/PortA26ToA27 Every errors are logged in a file called interestinglog.html See this page for where to find it https://gitea.wildfiregames.com/0ad/0ad/wiki/GameDataPaths This file is wiped on each game start.
-
That's why using >= is bad because each new version might break everything
-
In the mod.json you specify dependencies. You can use <= or >= there although I would not recommend it because you do not know if your mod will be compatible with the future version.
-
I think you'll find something better than this is coming this week.
-
Welcome back!
-
Ranged cavalry should be at the back of formations
Stan` replied to Atrik's topic in Gameplay Testing
Merged. -
Usually when you use rustup it either installs it itself in path or you have to edit your bashrc. Could also be you installed the wrong toolchain.
-
Atlas - Problem with placing vegetation on steep slopes
Stan` replied to Vantha's topic in Help & Feedback
Batching can mean many things but IIRC in our case we're just ordering the models so that we render them one by one by texture combination in order to save some time copying textures and mesh data to the gpu buffers. While instancing would mean that if you have 6 identical barrels to render they can be rendered multiple times with different transformations (position, rotation, scale) and material properties in a single draw call instead of 6 -
Atlas - Problem with placing vegetation on steep slopes
Stan` replied to Vantha's topic in Help & Feedback
As mentioned on the ticket I believe we do have batch rendering, but not instancing. I could not get instancing to work from previous work from @wraitii sadly. It can be picked up at https://gitea.wildfiregames.com/Stan/0ad/src/branch/GL_ARB_Instancing/ (anyone feel free) This will significantly reduce the number of drawcalls, but it might not make a big difference, since we have a lot of different models. Might work with the limit variation option. -
Can you enable the public (0ad) mod at the bottom ?
-
Atlas - Problem with placing vegetation on steep slopes
Stan` replied to Vantha's topic in Help & Feedback
It would be nice to be able to override this as well in the <prop tag as well> -
There should be a button on the right you click there and then the terms will appear. Once you accept enable feedback will be enabled
-
Can you clarify ? Did you accept the terms ?
-
After Ubuntu Upgrade mouse cursor is do not lineup
Stan` replied to magnitudevector's topic in Help & Feedback
Would be interesting to know if you have the same issue with other games using the sdl like super tux kart, battle for wesnoth, warzone 2100 -
I see, thanks for the explanation. On Windows this is less likely to happen since the game keeps an exclusive access to the files it uses. E.g. you would not be able to override the public mod while the game is running. If bad things like this does happen though it might be nice to have an issue tracking that. The reason we do not install it there but rather in %LocalAppData% which resolves to C:\Users\yourname\AppData\Local is not all users have admin rights and are able to put it in program files. Also I imagine the game might have some issues with the space in the folder name
-
Any reason not to use the -writableRoot param ? This would store all the files installed and created by the game in the corresponding app folder. That's what the portable version of 0 A.D. uses.
-
After Ubuntu Upgrade mouse cursor is do not lineup
Stan` replied to magnitudevector's topic in Help & Feedback
Thanks for testing. Do you know use Gnome/Mutter? If you do, you might try a different DE.