Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.074
  • Joined

  • Last visited

  • Days Won

    587

Everything posted by Stan`

  1. Still haven't decided if no animations < bad animations < weird animations <
  2. They are just using the boar armature and animation If @Alexandermb wants to improve it no problèem @Leyto you can add new textures to the existing ones or make new ones for the boar
  3. When those shields are in, another task will be to remove the innacurate ones from the buildings.
  4. The will be included, once the icons are in, the specific names are used, and the calf is fixed, along with some other little things, and maybe some template optimization, I believe they all duplicate stuff. Then I will give my greenlight
  5. Sorry, I meant, if for some reason units stopped using shields, it would be weird to have the higher ranks without shields right As long as it's helmets and shield bosses should be fine.
  6. Updated https://code.wildfiregames.com/D1718 <ResourceSupply> <MaxAmount>200</MaxAmount> <Growth> <GrowsWhenAliveOnly/> <Rate>2</Rate> <Interval>1000</Interval> </Growth> <Decay> <DecaysWhenDeadOnly/> <Rate>1</Rate> <Interval>1000</Interval> </Decay> </ResourceSupply>
  7. I believe (though thinking about it I'm not sure anymore) than the idea was that the unit "experience" levels where meant to depict their wealth. Like say from the cannonfodder to the elite bodyguard. Of course it could also depict historical evolution; I just would find it weird if the more you make research the less the unit is equipped.
  8. Would be nice to have this as well - https://trac.wildfiregames.com/ticket/1899
  9. Yeah, but that means more things running in the background, and so potentially more lag if there are a lot of units abusing it I'll update the diff when I have some time. Also I like to avoid memory access collision, two timers writing in the same variable at the same time might cause issues. I meant on a code standpoint if you print the health on the deer while it's alive: var cmpHealth = Engine.QueryInterface(this.entity, IID_HEALTH); if (cmpHealth) warn(cmpHealth.GetHitpoints) // will print 50 (Current Deer Health) While it's dead var cmpHealth = Engine.QueryInterface(this.entity, IID_HEALTH); if (cmpHealth) warn(cmpHealth.GetHitpoints) // will print 100 (Current Deer food amount inherited from the Hunt template)
  10. Could work as well. I just didn't want to have two timers. Also trees are not alive. Their health bar is the resource bar.
  11. Hello and welcome to the forums. Try disabling GLSL and postprocessing in the game's options.
  12. Yeah I fought a bug for a while and didn't remember to change it XD
  13. You could do that with that patch. For now I was thinking making it start at one third or half, so you can hunt a bit at the begginning of the games. Could be done in a separate patch Pretty easy to do. I might not have thought of all the cases so it might break But currently <a:example> <Amount>1000</Amount> <Type>food.meat</Type> <KillBeforeGather>false</KillBeforeGather> <MaxGatherers>25</MaxGatherers> <DiminishingReturns>0.8</DiminishingReturns> <Regeneration> <Fattening> <GrowsWhenAliveOnly /> <Rate>0.5</Rate> <MaxAmount>500</MaxAmount> </Fattening> <Decaying> <DecaysWhenDeadOnly /> <Rate>0.5</Rate> </Decaying> <RegenInterval>500</RegenInterval> </Regeneration> </a:example>
  14. Anything, for now just sheep cause I'm testing it but it could apply to literally anything. Could work, What do you have in mind.
  15. I started working on a feature that allows sheep to gain more food over time, and make animal's food decay over time, when being left out (rotting) I was wondering if that's something you guys would like to see in the game which would have a positive impact, or if you think that's better for a mod. @borg- @wowgetoffyourcellphone @Nescio @Hannibal_Barca https://code.wildfiregames.com/D1718
  16. I'm not sure but I believe the reasons we don't have images is because of security reasons... @Itms will know more.
  17. Looks okayish you might be able to use more uv space by organizing things a bit differently like joining the two middle space. Just make sure that all the uvs have the same texture space. By using the UV texture with squares.
  18. Not a great fan of the wolf maybe if it was inside out
  19. Feels a bit squared and like it was stretched on the Z axis. Looks nice otherwise.
  20. Hello, No unfortunately currently you cannot do that. There is a ticket for it, but no one has taken it for now. Sorry for the inconvenience.
  21. Sure what do you have in mind for the decal ? Anything we already have or something new ? (I just use it so we don't see the foundations below. About the shingle roof I don't know I guess we could put it over the wooden entrance. But I think it will look bad replacing the hay roof.
×
×
  • Create New...