Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.123
  • Joined

  • Last visited

  • Days Won

    587

Everything posted by Stan`

  1. Well you know people did not carry their armors all the time because it's harder to move, and to gather stuff, plus you are supposed to be hidden behind the walls, not at the mercy of a random guy passing by.
  2. This is planned, but not for next alpha. Moreover would you really gather stuff with a 24 pounds shield on your back ?
  3. Sure I talked with leper about this one there is already a diff provided on trac by trompetin http://trac.wildfiregames.com/attachment/ticket/1712/sound_1712.patch
  4. As some of you may not know it's not that they don't want to. Only that nobody can take care of it. I'll be glad to model them though. If you can generate a design doc like the ones on the wiki (a full one) with references pictures, that would help a lot. But if you want more factions, start by helping those that are not finished. In this case : Seleucids.
  5. I've been looking for that for a long time and I finally found a solution. As some of you may know the game engine doesn't support animated mesh with AO. So you have to make the Ao part of the texture. Problem is, no face should be overlapping, and therefore you must use only once the same texture space. This is easier if you have made the texture, but can be quite tricky if the texture is commonly used by all the buildings of the game. When you bake the AO you use a special UVMap usually with "Smart UV project" as shown on the image below : Usually your UV looks like this : With my trick they will look like that : With the last one, you'll just have to open gimp paste the AO you baked with the same UV as multiply layer, and export. Nothing more. So how to get this : 1. Unwrap your model with the default texture 2. Add a second unwrap layer with the first image parameters 3. Add a new material to your mesh using the texture. 4. Go to render and chose bake texture : 5. VoilĂ  ! Export your texture and do the final step in gimp.
  6. It's because I did a undo. line 474 is the line I added.
  7. Hi I found that function : void StopMusic(ScriptInterface::CxPrivate* UNUSED(pCxPrivate)) in the JSInterfaceSound.cpp and I was wondering how to use it to stop music playback in atlas. From my little understanding I have to use it there (LINE 474) : void MapSidebar::OnSimPlay(wxCommandEvent& event){ float speed = 1.f; int newState = SimPlaying; if (event.GetId() == ID_SimFast) { speed = 8.f; newState = SimPlayingFast; } else if (event.GetId() == ID_SimSlow) { speed = 0.125f; newState = SimPlayingSlow; } if (m_SimState == SimInactive) { // Force update of player settings POST_MESSAGE(LoadPlayerSettings, (false)); POST_MESSAGE(SimStateSave, (L"default")); POST_MESSAGE(GuiSwitchPage, (L"page_session.xml")); POST_MESSAGE(SimPlay, (speed, true)); m_SimState = newState; } else // paused or already playing at a different speed { POST_MESSAGE(SimPlay, (speed, true)); m_SimState = newState; } UpdateSimButtons();}void MapSidebar::OnSimPause(wxCommandEvent& WXUNUSED(event)){ if (IsPlaying(m_SimState)) { POST_MESSAGE(SimPlay, (0.f, true)); m_SimState = SimPaused; StopMusic() } UpdateSimButtons();}void MapSidebar::OnSimReset(wxCommandEvent& WXUNUSED(event)){ if (IsPlaying(m_SimState)) { POST_MESSAGE(SimPlay, (0.f, true)); POST_MESSAGE(SimStateRestore, (L"default")); POST_MESSAGE(SimPlay, (0.f, false)); POST_MESSAGE(GuiSwitchPage, (L"page_atlas.xml")); m_SimState = SimInactive; } else if (m_SimState == SimPaused) { POST_MESSAGE(SimPlay, (0.f, true)); POST_MESSAGE(SimStateRestore, (L"default")); POST_MESSAGE(SimPlay, (0.f, false)); POST_MESSAGE(GuiSwitchPage, (L"page_atlas.xml")); m_SimState = SimInactive; } UpdateSimButtons();}But I was wondering if it would stop all sounds, and if it's the correct function to use.
  8. The age phase sound is waiting for review
  9. The trebuchet didn't exist back them. If you want one you have to go for the mods.
  10. As showed in the picture i realized this flag was not smoothed, and fixed it. Flags.7z
  11. Hi darksunrise957 if you are willing to help there should be no issues. You can model buildings although no reference are stated yet. We have boats remaining, helmets, and props, that you could do. Welcome to the forums.
  12. Did you use my model ? Can I have the dae ? I want to check with higher settings
  13. We only can if the oars are hidden.
  14. Do you mean like Age of Mythology ? Copper, Bronze Iron Meteoric ? I started modelling the building, I guess it will be done at the end of the week, depending on my girlfriend.
  15. Well player_trans_ao_parallax_spec.xml is
  16. Fixed version for those using svn : https://github.com/0ADMods/ponies_ascendant News in this version - Updated Aura (I don't know what you intended at first so for now it's a building boost for nearby units) for Wisebiscuit. - Fixed AO's. You may have not noticed it since your are not maybe using the uberfancy graphics but using AO's on model with one uvmap crashes the game.
  17. Well a lot of my buildings are waiting for review, and my appliance is Enrique's mind.
  18. ETA : Enrique said he would model it. He said he would make a new design again. So nothing new
  19. I'm the one that makes that comes to life so that's not me either ^^
  20. I'm opening this thread for all that is linked for boats in ROTE. In the current state of things, I won't do any animations. If someone feels like creating armatures for them, he can go on. Sails : Needs a new logo : Proposal (I will make it smaller, to fit the new sails) : All boats needs to have rectangular sails like those We also need this boat (Quinquereme equivalent ) : The ramming boat does exist : Template name needs to be fixed, and a tent added.
  21. I've been thinking of this for a while and tried to put that on COM but I think it would be nice for the main team too. I think the main team dev's should play once a week or at least two times a month with the SVN version to further debug stuff. That would probably get rid of the A16 panic. You could also invite players on facebook and on the forums to join you, to give a more friendly approach to the team. About technical details I think you should choose a day when nothing game breaking and/or engine breaking is commited, ask everyone to compile the game and/or launch the autobuild. Then see if OOS, bugs, arise, and try to play with as much factions as you can. This way all gets debugged at the same time, and hopefully everybody as a great time. Just my two cents here. Regards Stan.
×
×
  • Create New...