Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.611
  • Joined

  • Last visited

  • Days Won

    610

Everything posted by Stan`

  1. @sis_gam Would you be so kind as to test this fix ? Just drag and drop the files of that archive inside your installation folder system.zip Oh and if you could upload your userreport_hwdetect.txt if it works, that would be great. See https://trac.wildfiregames.com/wiki/GameDataPaths Diff:
  2. https://trac.wildfiregames.com/ticket/6393
  3. Wait for A26 or somehow include it in your mod
  4. Well you can, all random maps are. Great work @Yavin! It's always inspiring to see what can be done with the engine. In case you want to put it in the community map mod I'm pinging @andy5995 This way more people can enjoy it. As for A24 replacing A23 it's intended. If you install A25b it will be the same. Technically multiple versions can coexist but it's better not to.
  5. Well one has to start somewhere. and art is really important. If we add a normal map and a spec map it might look really cool The only constraint is to respect the footprint of the current placeholder cube in the game, I made it to be the exact size of the Startcraft cc Here are some comments, you can try to be more creative and do a different shape for the building so it's not a 1:1 copy.
  6. Do you want criticism on the model itself?
  7. No crashlog no cookie.
  8. Actually <DisablePushing>true</DisablePushing> Seems to work for me, whether it's in template_unit or a specific template. And it make sense, I just misread the code.
  9. Can you try the counterproductive <DisablePushing>false</DisablePushing> Thoughts behind it // Original code for disabling pushing SetParticipateInPushing(!paramNode.GetChild("DisablePushing").IsOk() || !paramNode.GetChild("DisablePushing").ToBool()); // No tag auto tagOk = !paramNode.GetChild("DisablePushing").IsOk() // true auto tagValue = !paramNode.GetChild("DisablePushing").ToBool() // true SetParticipateInPushing(true); // Tag present <DisablePushing>true</DisablePushing> auto tagOk = !paramNode.GetChild("DisablePushing").IsOk() // false auto tagValue = !paramNode.GetChild("DisablePushing").ToBool() // false SetParticipateInPushing(false); // Tag present <DisablePushing>false</DisablePushing> auto tagOk = !paramNode.GetChild("DisablePushing").IsOk() // false auto tagValue = !paramNode.GetChild("DisablePushing").ToBool() // true SetParticipateInPushing(true);
  10. We don't support model scaling IIRC If we want to animate it we do?
  11. To generate beams we need some way to draw it X) Js can only make object pop, not draw laser beam using a shader from point a to point b. Or am I misunderstanding you? I want this, the game supports the damage but not the VFX.
  12. Not really because the projectile manager supports in theory constant damage (no reload time) but we have no way to draw it.
  13. Line must be continuous It's like a lightning beam.
  14. How hard would it be to make a shader or something? It would be really nice. Is it a technical limitation?
  15. Have you tried the DEL key? For some you might have to do alt select + DEL.
  16. One cannot stretch the quad to join the mesh and the enemy though... At least if there is code for it I don't know how it works.
  17. Meant to answer, and forgot sorry. It's not possible. Art and simulation are separated, https://code.wildfiregames.com/D1989 once planned to do what you want but it ended being a slippery slope. Maybe @Freagarach has an idea how to implement your feature through code though.
  18. Do note however that they are considering dropping subversion as mentioned by @s0600204 here. Source: https://d.i10o.ca/tmp/phabricator-future/ Also, that ironically, our git repo is about 10GB (5GB .git and 5GB actual files uncompressed for a given revision) while Phabricator is currently taking 138GB and growing. Last time I deleted 10GB worth of logs. As for migration, here is something from Trac to Gitlab https://github.com/tracboat/tracboat For links maybe we could have a redirection from https://trac.wildfiregames.com/ticket/6394 to https://gitlab.com/undyingnephalim/hyrule-conquest/-/issues/64 Phabricator will however be more tricky we currently have: (Maybe @vv221 has some ideas) Pastes https://code.wildfiregames.com/paste/ Commit Comments Concerns Diffs (Could just be exported as diff file for posterity) Links (those are tricky because in commit messages) Jenkins Migrating Jenkinsfile to YAML.
×
×
  • Create New...