Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.071
  • Joined

  • Last visited

  • Days Won

    587

Everything posted by Stan`

  1. Sweet Christmas What did you call this mod ?
  2. I guess the trees do all the work
  3. @feneur can you remove the post limit please ? Thanks
  4. Maybe then we could restrict catapults to buildings when attack range is implemented.
  5. I loaded the file in Blender and made a few checks but didn't find something inherently wrong. 1 material maximum... okay Mesh parented to the armature... okay Vertex groups... okay Did you get any error before or after those three like unable to load skeletons or something ? If you changed the rig, you need a new skeleton file.
  6. Oh okay. So first "static_meshes" should contain both the mesh, and the armature. animation should also contain both the mesh and the armature. However if multiple static meshes are using the same animation because the skeleton is compatible you do not need to export all the meshes as animation. The static_mesh should have the same number of bones and vertex groups than the animation. The static_mesh may not have two vertex groups with the same name.
  7. Hello and welcome to the forums @Adrix ! Skeletons do not need to be pointed to, they are recognized automatically, this is both a good thing and a bad thing. Yeah, if it's using the same skeleton as another one you do not need to create the file. Yeah, most of the time, import doesn't work with animated DAEs, you should ask @The Undying Nephalim for the source file instead.
  8. I guess packed units should be on standground ? Maybe something to include in @wraitii's changes
  9. Oh nice, can we do anything for him ?
  10. Sure, I just made sure the work was really easy If he comes back soonish he'll only have to add the actions to the blend file, copy the script press enter, and replace the files. Instead of having to do everything manually I could buy a power supply for him, if that gets him back Are you in contact with him ?
  11. Sure, but there could have been other issues, like non rigged vertices Just wanted to make sure everything is fine. Also I'm not sure how Enrique managed to duplicate the vertex groups at the first time I would have loved to, but he hasn't uploaded anything there https://github.com/AlexanderVzla?tab=repositories Yeah really sorry about that.
  12. That sounds doable, maybe someone could make a patch for it. @Freagarach Is working on a feature that will allow one to use catapults to bombard areas, which might make them a bit more useful.
  13. I need to write a tutorial for this explaining parallax and normal maps. Some facts: we use directX normal maps, not opengl ones (the shaders do the inversion for us) OpenGL shows how it will look in game (outward bump) Alpha channel of the normal map controls the height, the more transparent the higher (Usually using ao works fine for the mask)
  14. Currently done locally. Importing all the unit meshes in the new Blender file. Importing all the capes meshes in the new Blender file. Renaming all sub-meshes to the name of the object instead of cube.00X or other incorrect names Deleting all props vertex groups. Deleting all duplicate vertex groups. Those groups were named spine.001, neck.001, chest.001. Reexporting base (non animated meshes). Checking whether we can only reexport base meshes (Doesn't work). Updating skeleton files using the python script. Switch to meter scale. Added tools Fix broken vertex group Still need to be done Importing all anims from the scattered blend files. Exporting all the anims Cleaning up the anims. backup.1.zip EDIT 1 : Updated backup.2.zip EDIT 2 : Updated backup.3.zip EDIT 3 : Updated @Alexandermb I found a way to reexport animations really fast ! I wrote this little python script you can paste in the Blender console with the latest backup blend: # https://blender.stackexchange.com/questions/41484/how-do-i-change-actions-in-python # https://blender.stackexchange.com/questions/26995/where-is-python-file-for-exporting-dae-collada # https://blender.stackexchange.com/questions/38618/selecting-an-object-via-scripting # https://blenderartists.org/t/deselect-all-command/666535/4 # https://docs.blender.org/api/2.79/bpy.ops.wm.html # https://blenderartists.org/t/set-the-first-and-end-frame-by-script/535050 import bpy # Deselect everything for ob in bpy.context.selected_objects: ob.select_set(state=False) # The armature, and the dummy mesh needed (It has to be parented the armature) armature = bpy.data.objects['Armature'] unit_mesh = bpy.data.objects['m_armor_dress'] armature.select_set(state=True) unit_mesh.select_set(state=True) # For every action that exists in the blend file, export the matching collada. for a in bpy.data.actions: # print(a.name) # Get the current action to be exported armature.animation_data.action = bpy.data.actions.get(a.name) # print(a.frame_range) # We only need to export from the start frame to the end frame bpy.data.scenes[0].frame_start = a.frame_range[0] bpy.data.scenes[0].frame_end = a.frame_range[1] # Export the collada model bpy.ops.wm.collada_export(filepath='D:/Export/' + a.name + '.dae', keep_flat_curves=True, include_all_actions=False, keep_keyframes=True, selected=True, check_existing=False,filter_blender=False,filter_image=False,filter_movie=False,filter_python=False,filter_font=False,filter_sound=False,filter_text=False,filter_btx=False,filter_collada=True,filter_folder=True, limit_precision=True, filemode=8) This will export all the files with their Blender names in a folder called D:/Export. If we manage to rename all the animations to their current name in game it will be a piece of cake. Still need to gather all the animation. Also I tested @fatherbushido those new reexported anims work in Debug mode.
  15. But the maps are great, aren't they ? OceanSide:
  16. Not related Those bugs were already reported to @wraitii I believe.
  17. 1 @wowgetoffyourcellphone Might know better. 2. Depends on whether you are using the normal or the dev version. Usually they are in binaries/data/mods/public/art/textures/UI
  18. Incidentally yes, but the maps won't really change much aside from that.
  19. NOTE TO SELF: Use the white ground for forum integration. @LordGood Though palms look kinda edgy though, don't they ?
  20. Well more variety is okay Just wanted to make sure cause indeed they look very big. Maybe if the texture had more dense branches and leaves that would work
  21. Looking great, maybe the the spec map is too shiny on the roofs? How big is a typical acacia leaf ?
  22. I realize I failed to answer here, so I will do it now. I like consistency, so we should not use diacritics nor different letter for Greek and not for old Persian for consistency's sake. As we already use american English for the game it might make sense to follow american standards. So here is my take on this: I like diacritics and flat lines and whatnot I also like that the game displays text in Greek However: I can totally understand how specific names can be confusing (eg. Kushites) The player should not be confused by the interface. So I vote for the American Library's convention. As @wowgetoffyourcellphone said, specific names could be an option. Maybe @Freagarach could submit a patch for that if she wants to. There are not many occurrences of the word so it should be easy to make it togglable https://github.com/0ad/0ad/search?l=JavaScript&q="specific+name"&type=Code https://github.com/0ad/0ad/search?l=JavaScript&q="specificname"&type=Code
×
×
  • Create New...