Jump to content

ZeroByte

Members
  • Posts

    99
  • Joined

  • Last visited

Everything posted by ZeroByte

  1. Well this is just a hobby for me, but i agree with Rick...need good art, assets....i like Leadwerks 3, but i miss MakeFPS(); that was a real timesaver for me!
  2. I know, when i have a problem, i just look at the Docs and it's all there, real nice...
  3. Just wanted to say thank's for this awesome documentation Chris, so far it's answered all my questions!
  4. Thank's for the info Matthew..
  5. where can i download this Java Lib?
  6. Hi, i can't seem to get Buoyancy working on my Character Controller, but it collides with everthing else in my map. here is my player code: Controller player; player.Create(1.8f, .3f, .5f, 45.0f, 1.0f); player.SetMass(1); player.SetDamping(.0f, .0f); player.SetBuoyancyMode(1); player.SetType(1); player.SetPosition(Vec3(15.0f, 12.0f, 80.0f), LOCAL); Collisions::Set(1,1,SLIDINGCOLLISION); I can't remember what changed after Character Controller was updated awhile back. My spectator cam has Buoyancy, and all the other objects as well.
  7. That's an impressive list of new features Josh, thank's. @Pancakes, use the drop down box in the updater, select Beta 2.32.
  8. ZeroByte

    .NET Headers

    Ok, i got the control working in vb.net if anyone is interested. I'm using Visual Studio 2010 Express, it was just released. Link: http://www.microsoft.com/express/ Here is the code Imports Leadwerks Imports Leadwerks.Control Public Class Form1 Private buffer As Buffer Private ground As Body Private groundmesh As Mesh Private mesh As Mesh Private body As Body Private Sub LetkControl1_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LetkControl1.Init Dim world As New World Dim cam As New Camera FileSystem.AbstractPath = "C:\Leadwerks Engine SDK" cam.ClearColor = New Color(0, 0, 1, 1) cam.Move(New Vector3(0.0!, 0.0!, -8.0!)) Dim Light As Light = Light.CreateDirectional() Light.Rotation = New Vector3(45, 45, 0) Light.Position = New Vector3(0, 100, 0) Light.Range = 1000 buffer = New Buffer(LetkControl1.Width, LetkControl1.Height, 7) body = body.CreateBox(1.0!, 1.0!, 1.0!) body.Mass = 1.0! body.Position = New Vector3(0, 4, 0) mesh = mesh.CreateCube mesh.Parent = Me.body body.SetKey("name", "body1") ground = body.CreateBox(10.0!, 0.1!, 10.0!) groundmesh = mesh.CreateCube 'groundmesh.Scale = New Vector3(10.0!, 0.1!, 10.0!) //It crashes on this line, so i can't scale ground yet. groundmesh.Parent = Me.ground ground.Position = New Vector3(0.0!, -1.0!, 0.0!) ground.SetKey("name", "ground") body.CollisionType = 1 ground.CollisionType = 1 Collisions.Set(1, 1, True) LetkControl1.Start() End Sub Private Sub LetkControl1_Redraw(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LetkControl1.Redraw Me.Text = Leadwerks.Timing.FPS.ToString World.Update(Core.AppSpeed) buffer.Current = buffer World.Render() buffer.Current = LetkControl1.Buffer Light.Render(buffer) End Sub Private Sub LetkControl1_Resize(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LetkControl1.Resize buffer = New Buffer(LetkControl1.Width, LetkControl1.Height, 7) End Sub Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing LetkControl1.Stop() End End Sub End Class Hope this helps anyone using vb.net.
  9. ZeroByte

    .NET Headers

    Does anyone have an example of this control working in vb.net they could share ? I'm not very familiar with c#, or this wrapper, still working stuff out.
  10. Well correct me if i'm wrong, but the UDK, and Unity are scripting only ? I like Leadwerk's, for the multi language support, and in my opinion, it's the best.
  11. ZeroByte

    .NET Headers

    Ok, i got the control in vb.net now with no errors, haven't coded anything yet though.
  12. ZeroByte

    .NET Headers

    Thank's klepto, i haven't tried it yet, the control should work with vb.net right ?
  13. Ok, so i need to delete the parent, thank's for the help everyone.
  14. Hmm, well i can mouse pick any model and it happens. So what should i use to delete the physics body ? Or is the mouse pick the problem ? Thank's.
  15. Well, i delete the windmill model in my app, but the physics body remains. I have tried changing entity type also, but the physics body is still there.
  16. Hi, sorry if this has been asked before. When i call FreeEntity if(KeyHit(KEY_DELETE)) { if(pick.entity != NULL) { FreeEntity(pick.entity); pick.entity=NULL; } } is there a way to free the physics body ? I know there must be a way, or i'm just blind.
  17. I think Lua has it's place in LE, but, when i see a game engine with scripting only, i'm not interested.
  18. ZeroByte

    C# Source

    OMG, this is exactly what i've been looking for, thank's klepto2.
  19. ZeroByte

    C# Source

    Hi klepto2, will those 2 controls make it easier to setup a custom buffer with TAO Framework ? I've been trying to get that working in vb.net, and this great wrapper. BTW, thank's for releasing the source Ubu.
  20. I would prefer to use vb.net also, but as mentioned, it's not officially supported yet, and i haven't been able to get the Custom Buffer working with vb.net since LE 2.12. So i've been using c/c++, thank's to the easy to understand tutorials, and helpful community. LE makes using c/c++ easier than other engines i've tried, but i still struggle with it's syntax when i run into problem's.
  21. I was just curious, i don't know why Julio pulled the vehicle out. I like your raycast implementation better than messing around with trying to create my own vehicle joint, better speed with raycast car.
  22. Wow, that video is insane, lol, thank's for the link.
  23. Thank's for the kind comments, glad you got a kick out of it.
  24. Hi, i coded a 6 speed automatic gearbox, using the sound pitch synced with GetBodyVelocity(chassis, 0); on my car. Probably not the best way to do it, but it work's ok for me. I hope the video will play, sorry about the quality, had to shrink it down, also speedometer not working yet. Here is the link, for anyone interested, it's 2.26mb: http://66.244.240.14/
  25. Josh, the default vehicle work's good. Will you re-implement the Newton vehicle when it's fixed ?
×
×
  • Create New...