Jump to content
Everywhere

TheKkubas

Members
  • Posts

    23
  • Joined

  • Last visited

Profile Information

  • Location
    Poland

Recent Profile Visitors

3,644 profile views

TheKkubas's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Thanks man! I will test it tomorrow. Wrote from my mobile phone.
  2. Just want to create an animation in Blender but Leadwerks don't see it in editor. Leaving you with blender file.
  3. 3
  4. So I can put that lib to the main folder of project and make installer for it. Or just import the source files
  5. Is LuaSocket works with Leadwerks?
  6. Hi! When I used Entity:Move child entities of model wont work. 3D model is moving but Leadwerks stuff like pivots, cameras etc. won't move. I discovered it on that script: Script.object = "" --entity "Starship" Script.pivot = "" --entity "CameraPos" Script.uppoint = "" --entity "FowardPivot" Script.backpoint = "" --entity "BackPivot" Script.camera = "" --entity "Camera" function Script:Start() end function Script:UpdateWorld() objectrot = Vec3() if window:KeyDown(Key.W) then self.object:Move(self.uppoint:GetPosition()) end if window:KeyDown(Key.A) then local oldrotation = Vec3() local newrotation = Vec3() oldrotation = self.object:GetRotation() newrotation = oldrotation+Vec3(0,0,0.7) self.object:SetRotation(newrotation) objectrot = newrotation end if window:KeyDown(Key.D) then local oldrotation = Vec3() local newrotation = Vec3() oldrotation = self.object:GetRotation() newrotation = oldrotation+Vec3(0,0,-0.7) self.object:SetRotation(newrotation) objectrot = newrotation end end The Script.uppoint = "" --entity "FowardPivot" is a child of Script.object = "" --entity "Starship" . When i try to move with "W" pivot should go with spaceship but it won't.
  7. Thanks!
  8. Is it possible to make a character controller which works like these in the most of strategy games?
  9. I will check it out
  10. No. It have FPSPlayer Prefab.
  11. Hello. When I started creating anything on Linux I discovered that bug. When you run a game window appears, sounds are playing but screen isn't updating (when I walked I heard it saw the window but nothing happened). I used sample projects, and my own.
  12. Thanks. I'm not going to buy that software.
  13. Will GeoVox work with Leadwerks?
  14. Yea, it's helped a lot. Thanks!
  15. Hello! I have a little problem with animations. When I look at example crawler model it have multiple animations in single file. How to do it with .fbx file? I imported an animation from mixamo.com and I have only one animation. Anyone can help me?
×
×
  • Create New...