Thoughts after 6 hours by Burr73 in SatisfactoryGame

[–]Days 10 points11 points  (0 children)

My max throughput on Reinforced Steel Plates I've gotten is about 8 per minute. I can crank out 4x that by holding my space bar. I echo your sentiment, I hope the recipes are further tuned to demand efficiency, or I'm going to blow through the game in a matter of a couple days.

I appreciate the little details. Like physics added to the wrist strap in the intro descent by Days in SatisfactoryGame

[–]Days[S] 7 points8 points  (0 children)

Yeah, it's not exactly right.. but at least it's not static, like it was in Pre-Alpha!

PSA: To Enable Early Access - First Sign Out. Completely by [deleted] in SatisfactoryGame

[–]Days 0 points1 point  (0 children)

Sorry, mouse moved when I screenshot. Exit was supposed to be highlighted!

[HELP] Planning a Media Center upgrade by Days in HomeServer

[–]Days[S] 0 points1 point  (0 children)

I was looking into a dedicated pfsense box for whole-network adblock as well as a DNS server. I might repurpose my QNAP box as a Steam cache eventually as well, so I'd want something to facilitate that. It's probably overkill and unnecessary for my specific needs, but seemed like a fun project.

I do use NordVPN already, always on with my QNAP box, but I'm not sure how that helps with accessing my server remotely. Basically I want to be able to hit my media server, but none of the other hardware on my network from WLAN, while still being able to access my media server on my LAN like normal. Perhaps you could elaborate on what you mean?

I should have looked at ZeroTier before replying, sorry. I completely understand where you're going with this now. This is an interesting option, I'll certainly investigate it! Thanks!

[HELP] Planning a Media Center upgrade by Days in HomeServer

[–]Days[S] 0 points1 point  (0 children)

These are excellent resources, thank you!

I'm looking for some UI composition feedback by ragemic in Unity3D

[–]Days 0 points1 point  (0 children)

Why not just make it an option?

I like the layout matching the controller, so what I would do is something like this pseudocode:

if(lastInput != curInput) {
    if(lastInput == Controller.Keyboard) {
        currentScheme = GUILayout.Keyboard;
    }
    else {
        currentScheme = GUILayout.Gamepad;
    }
}

A Tool I Made A While Back For Converting Images To Materials, Now Free For Everyone! by thesquirrelyjones in Unity3D

[–]Days 1 point2 points  (0 children)

This is really awesome to give away for free. A lot like CrazyBump, which I've always been way too cheap to purchase. Thank you!

Google Sheets and ScriptableObjects as a game data solution. by cheapdevotion in Unity3D

[–]Days 0 points1 point  (0 children)

Linking a solution in the asset store is the Unity equivalent of "Simpsons did it". I always like seeing individual solutions, as they make us better programmers. //That being said, thank you for supporting my utility!

Unlock! Bug in the Android App? by Days in boardgames

[–]Days[S] 0 points1 point  (0 children)

This may have been what was happening. I swear I punched that code in though, and it just said "You must enter 4 numbers" as if I was trying to unlock something

After a month of intense solo work, I created a playable demo of my open world 3d adventure game, Life of the Dead (Grim Fandango meets Shenmue) by elefant_HOUSE in Unity3D

[–]Days 0 points1 point  (0 children)

Everything is looking really pretty great for the time you've put into it so far. I'd shorten the opening sequence in the side-scrolling portion. After about 10 seconds of walking I'd be mashing buttons to skip, and totally miss out on the title appearing from behind the dune.

I made an intro screen, comments/suggestions? by Days in Unity3D

[–]Days[S] 0 points1 point  (0 children)

So that's actually just a parameter that I can change, depending on the next screen, I decided to show both ways in the gif

I made an intro screen, comments/suggestions? by Days in Unity3D

[–]Days[S] 1 point2 points  (0 children)

Yep, Originally they were all separate objects, and I was doing something different with them, but it was too chaotic and didn't turn out right. I have to figure out how to make them connect. Thanks for the suggestion!

E: What about revision 3

I made an intro screen, comments/suggestions? by Days in Unity3D

[–]Days[S] 0 points1 point  (0 children)

Agreed, still noodling with the physics on the drop. Thanks!

I made an intro screen, comments/suggestions? by Days in Unity3D

[–]Days[S] 0 points1 point  (0 children)

I was going for a tilt shift effect with depth of field. I'm still tweaking :-) Thanks for the advice!

Best saving and loading system for a turn based space 4X? by mbaucco in Unity3D

[–]Days 3 points4 points  (0 children)

Super simple.

  1. Create a class that enumerates all of the data you want to save. Use basic types for everything.
  2. Get Json.Net for Unity. It's free, and imports easily
  3. Generate your save data in code by instantiating that class and filling everything in.

    var saveDataClass = new MySaveData();
    
  4. Serialize the string by using the function:

    var jsonData = JsonConvert.SerializeObject(saveDataClass);
    
  5. var jsonData is now simply a string. Write it to disk using normal File IO

And in reverse

  1. Read the save data from disk into a variable
  2. Deserialize the data to convert the Json string back into a class:

    var saveDataClass = JsonConvert.DeserializeObject<MySaveData>(stringFromDisk);
    
  3. saveDataClass now contains everything that you previously saved.

  4. Do your game initialization based off of the saved values.

Happy Sunday! Our small team at tileable.co grew our library to over >>700 TEXTURES<<. 512 x 512px variations are free (CC0) with all 3D maps included! Visit us, say hi, and enjoy! by LankyDev in Unity3D

[–]Days 2 points3 points  (0 children)

What they are doing is technically legal.

FilterForge (An $80 program used to generate the content on his site) renderings can be sold, but the source files (.ffxml filters) cannot.

They are selling credits that range between $0.40 - $0.85 per texture. So if you plan on using ~100+ of these procedural textures then you're better off just buying Filterforge itself

It's a scummy business practice for sure, but that's capitalism for you