Jump to content

ArBuZ

Members
  • Posts

    164
  • Joined

  • Last visited

Profile Information

  • Location
    Russia

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ArBuZ's Achievements

Newbie

Newbie (1/14)

7

Reputation

  1. Make sure that maximum 4 bones affect any vertex. There is the option somewhere in the Skin modifier. Something like maximum bones per vertex. EDIT: In the Advanced rollout -> "Bone Affect Limit" set it to 4
  2. Just a thought: What frame numbers do you use while animating? I had such problem when the frame number came out of the animation range of the model ( -1 or > animation length)
  3. Thank you very much Lumooja! You helped me again 2 times in less than a 20 minutes. Thanks!
  4. I'm making parenting, but without EntityParent command. Also I interested in position only. Rotation of parent doesn't change. So question is what command would be faster in such situation. SetEntityPosition(child, GetEntityPosition(parent)); or SetEntityMatrix(child, GetEntityMatrix(parent));
  5. Hi everyone! I'm making some library now with C++. And I want to make it as dll. Is it possible to use it in BlitzMax.? I was trying to google this question, but all links Iv found lead me to BlitzMax forum. And it doesn't work now. Lets say I have some class with methods: class myClass { public void myClas(string var1, Tvec3 var2){} public void ~myClass(){} public void someMethod(TVec3 var1, TEntity entity); } How should I wrap this class in bmax. Thanks in advance.
  6. The only way to make facial animation right now in LE is to make it with bones. So actually everything depends on how you do it (the number of bones, vertexes, animation length). It doesn't differs from usual animation and in general I think it won't make any impact on the performance. The main problem is to make such animation. Its very hard process. Also you will need some way to mange this animation in your game.
  7. Yes. It will work with 3ds max9. Btw, I re-uploaded the file. Let me know if you have any problems with the exporter
  8. Hi! Actually there is a topic 3d modeling. You should post any models related questions there. Anyway, if you use my exporter, then its really has some issue with mirroring. Its all about how 3ds max represents mirroring in matrices. Anyway to fix this just reset transforms of objects. For that go to Hierarchy panel, and press reset rotation and reset scale there. (or set reset transforms checkbox in the exporter settings)
  9. I'm not quiet sure, but on the old forum there was a guy Pushedx I think. I remember he was talking something about making work LE in parallel threads. Or I might be wrong. It was a long time ago. Here is some post I found, but not sure if its has any importance for you. Maybe there is more related posts, I dont know. (http://forum.leadwerks.com/viewtopic.php?f=3&t=3635&hilit=thread) Btw Pushedx was a cool community member. He knew so many things and helped people a lot. I wonder where did he go? Why did he left our community?
  10. Its a great library! Thanks for link!
  11. As I understand CAT is Character Animation Toolkit for 3ds max. My exporter for 3ds max and FBX exporter (as far as I know ) supports only skin modifier for skinned meshes. And it doesnt matter what kind of bones does skin modifier use (It can use even boxes or spheres as bones). If CAT uses Skin modifier then I think there is no any problem to use CAT. Each frame is exported (Like you have keyframes in all frames) So my answer would be Yes.
  12. Yes, while gathering info about winForms I stumbled on WPF. If I understood right inf future Microsoft is going to completely move on this technology. So I think its a right way to go now. Ill try it. But I'm still not familiar with .NET. So I decided to start from it found one interesting book about .NET and C# for C++ programmers. Reading it now.
  13. Custom controls... Hmm.. OK, Ill try it. Thank you very much!
  14. Hi guys! I need a little advice. I'm going to create a visual editor of dialog trees, that generates XML files. Here is an approximate sketch of what I want to have: I need to have the ability to add/delete, move, resize and link/unlink this nodes. (also collapse/expand would be great). So, how do you think, what should I use to create such GUI? Will WindowsForms (.NET) be enough to make such editor? Or should I use some GUI lib for that? C++ is preferable language. But if using of the other one will make things much easier Ill learn it. Its been a long time since Ive been made such programs. Last thing I was using was MFC . But I think now there are many modern ways of doing it. Thanks in advanced.
×
×
  • Create New...