Jump to content

Alienhead

Developers
  • Posts

    813
  • Joined

4 Followers

Recent Profile Visitors

6,903 profile views

Alienhead's Achievements

Mentor

Mentor (12/14)

  • Problem Solver
  • Posting Machine
  • One Year In
  • Dedicated
  • Conversation Starter

Recent Badges

758

Reputation

10

Community Answers

  1. Support animation Retargeting ?? If so is there an example online ?
  2. I use update project like everyone else. Don't know why I wouldnt have updated binaries? My project worked just fine 45 mins ago, before updating to latest.
  3. Here is the working code prior to last update. 344 self.world = self.entity:GetWorld() 345 self.mesh = LoadModel(self.world, self.playerModelFilenname) 346 --self.mesh = Model(self.mesh) 347 self.mesh:SetCollisionType(0)
  4. Yes I read that. Problem is the code and model was fine before update. There's only 2 models that even show up ( as the screenshot shows ). I thought the screenshots clarified the problem. The order of things - Everything worked fine Updated to lastest Nothing loads and error pops up.
  5. In editor everything looks as it should. In run mode I get this. I fear all updates.
  6. I've had my fair share of dealings with Object Pool creation over the years. I'm glad to announce that I have created the Ultimate Object Pooler , for Ultra Engine. This component can handle 10k entities per cycle, it can pool decals, emitters, models, brushes, sound and more ! prebuilt cache, or cache as-you-go or a combination of both. It will soon be available for download once I've got a home for it. Only three functions, it is well optimized. function Checkout(fname, OptionalTimer) function Checkin(ent) function Monitor_oPool()
  7. Awesome, had no idea that was in there. Thanks !
  8. How to completely remove an entity that uses the same variable in the same routine. I have two variables that hold references to two weapon entities the player uses. Scenario: Player changes weapons but nulling the variable holders for the previous weapons dont work because the new weapons fill in the varaible preventing it from being deleted. -- drop old weps self.weplefthand = nil self.weprighthand = nil collectgarbage() self.weplefthand = NewWepToHold1 self.weprighthand = NewWepToHold2
  9. We have Entity::Attach to parent an entity to a bone, but in cases of weapons, say I want to swap out weapons - how do I detach an entity attach to a bone? I see no Entity::Detach() or equivalent. I do not wish to simple destroy the attached entity but rather drop it back upon the terrain.
  10. Basically he wants a copy and paste button near the scene browsers rotation, position and scale settings. It does prove useful in some cases, I used that feature in Unity all the time. I believe Unity has a hotkey shortcut to copy the cameras position and rotation of the editors camera and paste it to the selected object in viewport.
  11. This bug has been going on since week1 of testing.. Code: model:SetPosition(player.rhand:GetPosition()) model:SetRotation(player.rhand:GetRotation()) model:Attach(player.mesh, player.rhand) Attaching a gun to the players hand bone * ( common practice ) * results in some very funky behavior.
  12. Alienhead

    cast

    https://www.ultraengine.com/learn/Object_As?lang=lua
  13. Alienhead

    cast

    Josh could you please update the docs or show my how to cast a object as a type... The current docs show: ( but this fails ) self.mesh = self.mesh:As<Entity>() Would it just be? self.mesh = Model(self.mesh)
  14. yes this text map seems to work for me too. Only seems to act up a little when I build GI
  15. Im not sure if this has anything to do with it but the values on my lights and probes are constantly getting reset to 255,255,255,255 and 100 brightness every time I select them Now if I deselect this item, or shut down ultra and reload it, or reselect the probe or run the map then select the probe or whatever the damn thing is back to default values.
×
×
  • Create New...