Jump to content

reepblue

Developers
  • Posts

    2,475
  • Joined

  • Last visited

Recent Profile Visitors

34,263 profile views

reepblue's Achievements

Experienced

Experienced (11/14)

  • Problem Solver
  • Dedicated
  • Conversation Starter
  • Very Popular
  • First Post

Recent Badges

1.3k

Reputation

13

Community Answers

  1. I really hope someone will get to making this. 🙂
  2. This looks like a Leadwerks game. If it uses the default main script, then ruining the application via command line using -fullscreen should do it. You probably also want to use +screenwidth and +screenheight followed by the number of your desired resolution.
  3. I ran into this issue and it only seemed to happen in Debug builds.
  4. Some of these are corrections to design choices, others are bug. These have been noted in the last workshop and I'm making this topic so it doesn't get lost. 1. Can not select items in vertex edit mode. 2. When in scale mode, the selected object is solid white in the 2D view. It's the faces that get highlighted orange to reflect the 3D editing tools. My suggestion is that the entire object should be highlighted in the 2D viewports to make it more consistent with the other modes. 3. You can still get tall brush outlines when trying to create a brush when the last selected object was a point entity. 4. You still can't delete string entries from the World Settings. 5. You should be able to save a prefab like saving a normal map. We discussed other systems that can be worked on later, but for now it might just be better just to mimic Leadwerks for now. 6. Selection mode (Feature, just noting it here.) These 6 things should be accounted for 0.9.5!
  5. If you edit the FirstPersonControls component to with the below, then create a prefab using it, the mouse look will be sluggish. I've spent 4 hours last night trying to figure this out and I can confirm this is a bug with the prefab system. If you were to assign this to an entity normally, it'll work fine. The Raw mouse code tends to work ok regardless. #pragma once #include "UltraEngine.h" #include "FirstPersonControls.h" using namespace UltraEngine; FirstPersonControls::FirstPersonControls() { name = "FirstPersonControls"; } void FirstPersonControls::Start() { auto entity = GetEntity(); entity->SetPhysicsMode(PHYSICS_PLAYER); if (entity->GetMass() == 0.0f) entity->SetMass(78); entity->SetCollisionType(COLLISION_PLAYER); camera = CreateCamera(entity->GetWorld()); camera->SetPosition(0, eyeheight, 0); camera->SetRotation(0, 0, 0); camera->SetFov(70); currentcameraposition = camera->GetPosition(true); freelookrotation = entity->GetRotation(true); } void FirstPersonControls::Update() { Vec3 movement; float jump = 0; bool crouch = false; auto entity = GetEntity(); auto window = ActiveWindow(); if (window) { auto cx = Round((float)window->GetFramebuffer()->GetSize().x / 2); auto cy = Round((float)window->GetFramebuffer()->GetSize().y / 2); auto mpos = window->GetMousePosition(); window->SetMousePosition(cx, cy); auto centerpos = window->GetMousePosition(); if (freelookstarted) { float looksmoothing = mousesmoothing; //0.5f; float lookspeed = mouselookspeed / 10.0f; if (looksmoothing > 0.00f) { mpos.x = mpos.x * looksmoothing + freelookmousepos.x * (1 - looksmoothing); mpos.y = mpos.y * looksmoothing + freelookmousepos.y * (1 - looksmoothing); } auto dx = (mpos.x - centerpos.x) * lookspeed; auto dy = (mpos.y - centerpos.y) * lookspeed; freelookrotation.x = freelookrotation.x + dy; freelookrotation.y = freelookrotation.y + dx; camera->SetRotation(freelookrotation, true); freelookmousepos = Vec3(mpos.x, mpos.y); } else { freelookstarted = true; freelookrotation = camera->GetRotation(true); freelookmousepos = Vec3(window->GetMousePosition().x, window->GetMousePosition().y); } float speed = movespeed;// / 60.0f; bool jumpkey = window->KeyHit(KEY_SPACE); if (entity->GetAirborne()) { speed *= 0.25f; } else { if (window->KeyDown(KEY_SHIFT)) { speed *= 2.0f; } else if (window->KeyDown(KEY_CONTROL)) { speed *= 0.5f; } if (jumpkey) { jump = jumpforce; } } if (window->KeyDown(KEY_D)) movement.x += speed; if (window->KeyDown(KEY_A)) movement.x -= speed; if (window->KeyDown(KEY_W)) movement.z += speed; if (window->KeyDown(KEY_S)) movement.z -= speed; if (movement.x != 0.0f and movement.z != 0.0f) movement *= 0.707f; if (jump != 0.0f) { movement.x *= jumplunge; if (movement.z > 0.0f) movement.z *= jumplunge; } crouch = window->KeyDown(KEY_CONTROL); } entity->SetInput(camera->rotation.y, movement.z, movement.x, jump, crouch); float eye = eyeheight; float y = TransformPoint(currentcameraposition, nullptr, entity).y; float h = eye; if (y < eye) h = Mix(y, eye, 0.5f); currentcameraposition = TransformPoint(0, h, 0, entity, nullptr); camera->SetPosition(currentcameraposition, true); } //This method will work with simple components shared_ptr<Component> FirstPersonControls::Copy() { return std::make_shared<FirstPersonControls>(*this); } bool FirstPersonControls::Load(table& properties, shared_ptr<Stream> binstream, shared_ptr<Map> scene, const LoadFlags flags) { if (properties["mousesmoothing"].is_number()) mousesmoothing = properties["mousesmoothing"]; if (properties["mouselookspeed"].is_number()) mouselookspeed = properties["mouselookspeed"]; if (properties["movespeed"].is_number()) movespeed = properties["movespeed"]; return true; } bool FirstPersonControls::Save(table& properties, shared_ptr<Stream> binstream, shared_ptr<Map> scene, const SaveFlags flags) { properties["mousesmoothing"] = mousesmoothing; properties["mouselookspeed"] = mouselookspeed; properties["movespeed"] = movespeed; return true; } testplayer.zip
  6. Two things: 1. When creating a camera at the world's position (0,0,0) the entity will exist in the world but will not show up in the editor. 2. The map will break and will be unrecoverable as the camera when a prefab includes a camera. The camera/prefab is no longer listed in the entity so you can't just delete it. 3. Also it seems that the camera can't be the first object to be made. You need another point entity in the scene first. camprefab.zip
  7. No, it sees them, it's just being treated as files and not directories.
  8. Super! I'll definitely try this and report back to you. This should be very helpful.
  9. If you can start with a simple .collider export extension for blender, I'm sure people would appreciate it!
  10. I complained about this many times in our Workshops but yeah this looks disgusting. What's your lighting setting with this by the way?
  11. One thing I was trying to do was zip up files by extension and use raw asset timestamps to check if any of the files are newer than the previously made packages. My application didn't work 100% but I think this was before ZipLib was introduced as part of the engine (?) I'm not sure, it's been a while since I tried to make my own tools.
  12. I think this is really useful despite the UI being a bit overwhelming at first. Some bugs here and there but I see it's potential. Here are my suggestions/ideas: I would remove Steamworks altogether. People probably aren't going to feel good about putting their Steam information into a 3rd party app. Your packager doesn't do what I expected. I expected it to at least act like the Leadwerks publisher by zipping the game content and pasting the package into a new folder along with the executable and the dlls. Also, using separate folders doesn't seem to work. If possible, I recommend you rebuild the application using the engine library. It has ZipLib included, and your application can be multiplatform. I'm taking you wrote this in C# or some other .NET framework.
  13. I've wondered why my models would magically go dark all of a sudden. Thanks.
  14. @Josh This is broken again with the last update, please remove the solution tag.
×
×
  • Create New...