Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    17.627
  • Joined

  • Last visited

  • Days Won

    562

Everything posted by Stan`

  1. Could also be part of Trac to make it collaborative.
  2. @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:
  3. https://trac.wildfiregames.com/ticket/6393
  4. Wait for A26 or somehow include it in your mod
  5. 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.
  6. 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.
  7. Do you want criticism on the model itself?
  8. No crashlog no cookie.
  9. 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.
  10. 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);
  11. We don't support model scaling IIRC If we want to animate it we do?
  12. 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.
  13. Not really because the projectile manager supports in theory constant damage (no reload time) but we have no way to draw it.
  14. Line must be continuous It's like a lightning beam.
  15. How hard would it be to make a shader or something? It would be really nice. Is it a technical limitation?
  16. Have you tried the DEL key? For some you might have to do alt select + DEL.
  17. 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.
  18. 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.
×
×
  • Create New...