#AtomicStudio's Mods

1393 messages · Page 2 of 2 (latest)

thorny wagon
#

Hello atomic does this mod still support lethal company v33

#

Its my favorite version

pearl flame
#

might be able to combine it into one, by ripping it, and re-importing the ripped files into unity? I did that with the original bundle i am using in LI so I could edit an animation when i didnt have the original files.

toxic chasm
#

I’m planning to rather make an extension of my website or find a website to mark down progress and other things for my mods

#

Trello might work

toxic chasm
toxic chasm
thorny wagon
toxic chasm
#

To whoever wanted the cozy lights material to be consistant with the colour of the light. After some brainstorming I am starting to make it.

round steppe
#

it was me

#

lets gooo

toxic chasm
#

Yeah just thought about it this morning and realised i could do it

toxic chasm
# toxic chasm

Plan:

  • Separate the cozy lights from bulb material
  • Make sure animator isn’t broken with the material change
  • New method to change the material with given RGB values so rainbow mode can work
  • Test in game
#

Doesn’t seem as bad now but something won’t work that I don’t know how to fix lol

toxic chasm
#

Most likely the animator

round steppe
#

small problem is, i asked this for christmas but now... well 💀

#

this was so i could decorate the ship

toxic chasm
#

Yeah I also wanted it for release but am not the best lol

#

So I released the non finished version

#

Anyway I also plan some presets and eventually a way to cycle and make animations

toxic chasm
#

Testing material stuff

pastel oyster
toxic chasm
#

Yeah ive been looking

toxic chasm
toxic chasm
#

[Info : Unity Log] The cozy light has materials: BlackCord (Instance), TEST MATERIAL

pastel oyster
#

as expected

toxic chasm
#

Looking into Unity Explorer shows the materials didn't change...```
[Info : Unity Log] Made the material.
[Info : Unity Log] Swapping material on object: CozyLights
[Info : Unity Log] The cozy light has materials: BlackCord (Instance), TEST MATERIAL
[Info : Unity Log] Made the material.
[Info : Unity Log] Swapping material on object: CozyLights (1)
[Info : Unity Log] The cozy light has materials: BlackCord (Instance), TEST MATERIAL

#

Which means something may be setting the material or my code is lying to me

#

The stack overflow is where i got the answer from but idk

round steppe
#

more like couleur miaoudeux

toxic chasm
#

I just don't understand... nothing should be coding the material back (yes i have refreshed and also the lights are literally just the same colour)

round steppe
#

shit

toxic chasm
#

I might set this up on github so people can pull request

toxic chasm
#

I'm not letting materials slow me down from animations!!!

toxic chasm
#

Experimental Version - Animations!

https://thunderstore.io/c/lethal-company/p/AtomicStudio/Colorable_CozyLights/

Want to create animations and understand them?
https://atomictyler.dev/tools/lights/

{'R,G,B,A','100'} - RGBA and time to display for in ms

What about materials? Work in progress, animations have been in the works a while...

Share or paste someone elses animation easily with https://atomictyler.dev/tools/lights/ and easily edit them to your style.

Report bugs, I spent a while on this.

#

Also some website issues, that is relatively new. Also sorry ADHD O-O

#

@round steppe might be interested

toxic chasm
round steppe
#

Thas really cool !

toxic chasm
toxic chasm
toxic chasm
#

A single line of code that escaped from material testing

#
MaterialColourChanger(normalizedR, normalizedG, normalizedB); // CAUSE GAME CRASH WITH NO MATERIALS!!!
#

Just need to paste this in rn for testing

{'39,148,245,1.00','1000'},{'194,0,18,1.00','2000'},{'14,194,0,1.00','1000'},{'194,107,0,1.00','2000'},{'168,0,194,1.00','1000'},{'198,255,169,1.00','2000'}
toxic chasm
#

Bug was patched

round steppe
#

i didnt noticed that, simply because im not using this mod atm... ill use it for next christmas

toxic chasm
#

Idk, materials suck.

public void MaterialHandler(MeshRenderer cozyLights)
{

    if (MaterialMade)
    { 
        MaterialSwapper(cozyLights); 
        return; 
    }

    Material[] materials = cozyLights.materials;

    cozyLightsOldMat = materials[1];
    cozyLightsNewMat = new Material(cozyLightsOldMat) { name = "TEST MATERIAL", color=Color.green };

    MaterialMade = true;

    MaterialSwapper(cozyLights);
}

public void MaterialSwapper(MeshRenderer cozyLights)
{
    Material[] materials = cozyLights.materials;

    materials[1] = cozyLightsNewMat;
    cozyLights.materials = materials;
}

// It IS colour, i sacrifised my spelling for yall americans in the name.
public void MaterialColourChanger(float R, float G, float B)
{
    if (cozyLightsNewMat == null) { return; }
    cozyLightsNewMat.color = new Color(R, G, B);
}
#

@vale kraken I summon you to help :3

vale kraken
#

whats up

toxic chasm
#

The material isn’t setting for the cozy lights

#

And I’ve tried everything

toxic chasm
vale kraken
#

also the material in cozylights getting set every frame itself?

toxic chasm
vale kraken
#

is the*

#

the actual game

toxic chasm
#

Idk if it is I didn’t see any script or anything that should

vale kraken
#

i mean this is what i do for setting materials

toxic chasm
vale kraken
#

kind of but not really

toxic chasm
#

I mean MaterialSwapper

vale kraken
#

yeah i know

crude python
#

animator is actually sets material

#

so you will have to replace material after animation ends

toxic chasm
#

Okay thanks, I’ll look into that then

vale kraken
#

i know LateUpdate runs after the animation's actions, dont know how you'd get the end of the animation though

toxic chasm
#

Yeah quick search isn’t helping to get the end of an animation

#

I could do like wait 0.1 then set the material right? Seems it runs every time the lights turn on

toxic chasm
#

S1ckboi is telling me

thorny wagon
#

s1ckboy tells me alot too

#

Y4pboy

toxic chasm
#

Knock knock

toxic chasm
#

Have to counter some bugs rn

#

But... @round steppe. You will have a lovely ship for christmas with perhabs green and white lights and so on and they actually match

round steppe
#

Ahhhh finally !

#

Thanks for the hard work!

toxic chasm
#

Might be good for halloween too!

toxic chasm
#

I'll make a nice looking icon for the potentially last major release of the mod.

toxic chasm
#

Colorable Cozy Lights - v2.0.0

Last Major Release

Will Colorable Cozy Lights be at its end of support?
No! I will still update the mod or website if updates or features are requested or needed.

The Material Update

Ever felt the cozy lights didn't fit with the color it was actually producing? Well no worries anymore!
The light bulb actually is the correct color now.

I really like this mod and got help from various people to make this version!

Also I forgot to mention last update, if you change the animation config it will not apply until you go back to the main menu.
The mod also now has a repo: https://github.com/AtomicTyler1/ColorableCozyLights/releases

Now you can decorate your ship as much as you like!

Bugs

Report bugs. I didn't find any. If you do find one, make sure it's not one of these:

  • Your RGB values arn't above 255 or below 0
  • Your animation isn't actually correct. You can go to https://atomictyler.dev/tools/lights/ if you want to check it. It should remove invalid ones.
weary ice
#

ooo, glad to see you figured out the light bulb's material

toxic chasm
toxic chasm
#

I'm planning on making a scrap mod (eventually and dont ask about the moon), give me some scraps you would like to see.

round steppe
#

with effects?

toxic chasm
toxic chasm
#

I need to take a 3d scan of buddy and have buddy scrap

round steppe
cunning coral
#

Atomic cooks again!

#

Sheeeeeeeesh

#

Love the update btw<3

toxic chasm
#

Thanks it took a lot of pain lol

lost wagon
toxic chasm
cunning coral
cunning coral
toxic chasm
#

It’s lovely having mods that are just QoL so has dead ass thread lol

pseudo knot
#

lol

toxic chasm
#

Yeah I'm making Code Birth 4

#

Stealing all of #1241786100201160784

#

And just adding a plink scrap

pastel oyster
#

just think about it

#

no need to open visual studio

toxic chasm
#

I still open it about 3 times a day anyway doe (VSCode)

pastel oyster
toxic chasm
#

No I've been working on a big website overhaul for a long time :3

#

So I open it alot

toxic chasm
#

Anyway new kittens came today

#

Cat distribution system

pastel oyster
#

right one is so smart

#

and calm

toxic chasm
#

Anyway I finally got my steam API working.

silver copper
#

This thread is the best one

toxic chasm
cunning coral
#

Burh

silver copper
#

Burger

cunning coral
#

Hamburbur

toxic chasm
#

chezburger

silver copper
#

Chicken burger

toxic chasm
#

Imagine peoples mods being broken in v70 😎

eager shuttle
toxic chasm
#

I need a reason to update my cosmetic mod so ill probably start trying to merge all of my cosmetics into one bundle to stop people copying my cosmetics (It's happened alot. I have seen the valve and other things, i know that Moroxide's modpack never informed me and uses some of them. Like not as a dependancy but ripped straight from my mod) and I will also port over my Toilet Paper valuables models from R.E.P.O. (https://thunderstore.io/c/repo/p/AtomicStudio/Toilet_Paper_Valuables/)

cunning coral
#

@toxic chasm
-# The announcement said you like being pinged ralStare

limber portal
toxic chasm
limber portal
#

oh Dead

thorny wagon
#

@toxic chasm hi atomic

#

mod update when

#

where is atomic enemies

#

and moons

#

and interiors

toxic chasm
#

its existed

#

Just under the name wesley

toxic chasm
#

Yeah it’s a secret I’ve been hiding

pseudo knot
#

I've been considering including only the cosmetics my group wears in my Addons mod but I wouldn't do that without asking you first, just because loading 50 individual cosmetics adds quite a bit to boot times when my group only uses like 10 of them lol

toxic chasm
#

I wouldn’t making a lite version of the mod that cuts down on some commonly unused cosmetics

vale kraken
azure pagoda
#

You can always direct them to the morecompany config

#

Which has a setting for not loading specific cosmetics

pseudo knot
#

DiFFoZ explained why before

#

But yeah MoreCompany cosmetics benefit from being in a merged AIO bundle

#

On boot it still has to register the disabled cosmetic first in order to turn it off

#

You can see it log it

pseudo knot
toxic chasm
#

I quite litterally dont have any of the .fbx and the cosmetic icon .pngs so I need to hope the .cosmetics can be read it into the More Company Unity project.

pseudo knot
#

I'm unsure if they can be but you can test that

#

Otherwise maybe assetripper can help you restore the files?

toxic chasm
#

Yeah I've just been putting it off for a long time since I reset my PC and now I'm even more busy due to me making a PEAK Modding server and doing stuff for that

pseudo knot
thorny wagon
#

hi mel

toxic chasm
pastel oyster
pseudo knot
#

@toxic chasm Since you've been busy, I wanted to ask if you would be cool with the idea of me merging the cosmetics my group uses into my addons mod til you update this mod since my group only uses about 10 of them plink

#

actually it seems like boot times are way quicker if the default MoreCompany cosmetics are disabled with your mod present

thorny wagon
#

Hello me

round steppe
#

just saying here, cause it looks like nobody has said it before, but i really enjoy your cosmetic pack, idc about boot times and stuff, all your cosmetics are great and a lot are used by my friends when playing

vale kraken
#

Just saying here, cause it looks like nobody has said it before, but i REALLY hate your cosmetic pack, and I care about EVERYTHING

vale kraken
#

Can I take the cosmetics u made, split them up and put the ones I like and upload onto my pack

toxic chasm
#

Just disable them smh

vale kraken
#

If I load in 2 seconds slower onto my modpack it's your head on the stake

toxic chasm
#

Oh yeah my fault for slowing boot times 0.001

round steppe
#

dont listen to haters

#

nobody cares about boot times

#

annd it's not cosmetics that takes the longest to load

vale kraken
#

I think they're technically fans 😂

thorny wagon
#

Just saying here, cause it looks like nobody has said it before, but this is a mod and i feel about it

toxic chasm
toxic chasm
# round steppe dont listen to haters

I wouldn't say lunxara hates on it, she clearly does like the mod but just cares about the boot times it causes although mine is like super speedy with the mod catshrug

toxic chasm
pseudo knot
#

Merged bundles tend to load instantly for MoreCompany

#

But no I definitely don't hate this mod

toxic chasm
#

Anyway about time i make a new mod, just a simple one to get me back up and running

toxic chasm
#

Its just a little asset replacement but someone wanted it and thought it was easy enough (The concept is so u dont think for a second to say on your left or right) Opinions would be nice

rough cipher
#

#modding-general message

toxic chasm
#

I said it first anyway plink

rough cipher
#

I think keeping them straight would help make em more readable, but I still believe your "L" and "R" are clearer, the slight tilt just keeps it from being the better one methinks

toxic chasm
#

#modding-general message My message was first

#

See

#

Copy cat

#

Ive already finished the README lol and about to setup the github

#

idk if i should release it peposhrug

rough cipher
toxic chasm
#

I have but she is offline atm

#

I asked and was allowed to publish mine anyway catpeek

rough cipher
#

hell yah

#

never said you shouldn't release it btw I just thought it was funny that you two had the same thought

toxic chasm
#

I mean it was the suggestion

#

To have it next to the cone

toxic chasm
silver copper
#

Another great mod

toxic chasm
#

L&R Map Indicator [v1.1.1]

Just a small update to add custom coloring and change how the L and R are displayed.
You can make it so they are fixed (They rotate with the player) or not fixed (they always face "upwards")

Special thanks to @uncut onyx for the new asset bundle and supplying with most of the code for the new update

thorny wagon
#

Hello Atomic.TS("AtomicStudio"); thunderbolt c# hammer emoji op yesterday at 16:39

toxic chasm
toxic chasm
#

Don't expect much but a little moon I'm trying to make

#

Last time i tried to make a moon it was a disaster so i don't knoiw if this one will get finished

toxic chasm
rough cipher
#

we both getting into mooning at the same time!!!

#

cool stuff

toxic chasm
#

Yippe! I think mine is almost finished, I need to transfer it onto a thumb drive though as im switching PCs so I'm hoping it doesnt fail or something. Other than that it'll be out soon

#

People in #dev-moons have helped a lot

rough cipher
#

i have like 3 mooners helping me do the initial setup

#

im like the nepo-baby of mooning

azure pagoda
rough cipher
toxic chasm
#

I'll probably just wait until I can get back onto my main project to work on it as im not dealing with this right now

rough cipher
#

no you're not

#

liar

thorny wagon
#

☝️🤓

rough cipher
#

☝️ 🤓

round steppe
toxic chasm
#

☝️ 🤓

toxic chasm
toxic chasm
#

Veridia-273 v0.1.0

New mod release! My first moon.

An overgrown and abandoned moon, long since seen any activity from humans. Used to be a research lab for The Company, many employees have tried to collect scrap, but they don't seem to make it out...

Config details

  • Cost: 600
  • Danger Level: S++
  • Different spawnable (vanilla) scraps: 30
  • Max Enemy Power Count: 15
  • Max Outside Enemy Power Count: 15
  • Max Daytime Enemy Power Count: 17
  • More configs found in LLL.
indigo locust
#

Cooking!!!

toxic chasm
#

Just experimenting with the whole moon making process

lost wagon
#

Good job pikaHeadpat

toxic chasm
limber portal
#

oh this looks cool

cold elbow
#

oooooh solid solid

#

from the video i see a couple of things that should be easy to fix, the entrance/fire exit door's floor has the default tag, that means that the footsteps sound like plastic

#

some textures from the plants and the walls of the entrance look off/really stretched?

#

but overall i dig it

#

nice job!!!!!!!!!!!!!!!!

toxic chasm
cold elbow
rough cipher
indigo locust
#

What is that

limber portal
#

movie prop-ahh bush PikaHoldIN

toxic chasm
#

Im bad at foliage okay sadge

pseudo knot
#

The thing that made me sad was it doesn't look the same ingame for me as it does in the Screenshot, the Screenshot got me excited thinking it looked like one of the Lunar Lights style moons lol

toxic chasm
#

I couldnt find any good ones so i used pngs

pseudo knot
#

Fair enough

toxic chasm
#

I will probably maybe improve stuff

pseudo knot
#

Yeah I believe in ya

toxic chasm
#

First moon, first time unity editor

pseudo knot
toxic chasm
#

Im becoming game dev now: Fish and chips van, clearly a better game than LC

pseudo knot
#

lol

toxic chasm
#

But yeah when i can get back to working on the moon (A weeks time) I'll try to roll out an update to improve the looks of the moon, and maybe get rid of some obstructive/repeating trees

#

I just found some time to upload and fix the moon

rough cipher
#

don't be discouraged by any of these comments ;)

#

most people saying these just want you to improve on them at a later point, no shade intended despite the way some people deliver their criticisms :P

#

i know beanie has some foliage and skelaah said you can try looking in the mansion tiles for foliage, so you'll be just fine!

vale kraken
#

I'm sending shade I'm sending shade

indigo locust
#

im sending a microwave

rough cipher
toxic chasm
cold elbow
#

And you can always ask the mooners for feedback/tips

robust cave
#

hi the thunderstore website doesnt show image of your moon can you fix it or show me some images ?

pseudo knot
#

@toxic chasm I just figured I should let you know that Colorable CozyLights absolutely nukes performance when you buy them with it installed

#

Dunno if you plan to fix that but yeah it's baaad

#

lol

toxic chasm
#

I’ve been sick since yesterday morning so I’ll fix it when I’m better perceive

pseudo knot
#

Got ya AlexHeart Feel better

pseudo knot
#

@toxic chasm Would you be cool with me including the cosmetics made for me and the Niko Cosmetics inside of my addons mod? My group doesn't usually use any of the cosmetics outside of the Niko ones for a couple people so idk if including the full mod anymore would be worth it since it has a lot of cosmetics peepoGiggles

toxic chasm
#

Sure you can include those

pseudo knot
#

👍

toxic chasm
#

Im looking into fixing Colorable Cozy lights, ive not touched it in a while so who knoes what broke

limber portal
#

can you fix my parents's broken relationship? perceive

toxic chasm
#

Yes, come out to them as boykisser boykisser_pipebomb

limber portal
toxic chasm
#

@pseudo knot Colorable CozyLights is perfectly fine for me, it has no lag even on rainbow mode. What were you doing that caused the lag? Do you have any mods that might conflict?

pseudo knot
silver copper
#

Toilet

vale kraken
indigo locust
#

Toileto

vale kraken
#

Also you never responded to dms

toxic chasm
#

I wonder how well my mods held up to v80

#

I probably need to rebuild them sad

cunning coral
#

Cosmetics are fine at least, right?

rough cipher
#

should be

indigo locust
#

Good morning monty

thorny wagon
#

I wish atomic was real 😔

rough cipher
indigo locust
vale kraken
#

Why is atomic a studio

indigo locust
#

Thats so sad

rough cipher
#

I woke up like 3 hours ago though and it's 10am already

indigo locust
#

Too early!!!

thorny wagon
#

I wake up at 9am and go to bed at 8:59am

toxic chasm
#

So I became AtomicStudio

vale kraken
#

New phone looks weird, wtf is this font

indigo locust
#

temu ass font

vale kraken
#

Back to normal

toxic chasm
#

Chat is too active, adding slowmode

indigo locust
#

too powerful, im scared

toxic chasm
indigo locust
#

not like i wanted to talk in here either........... perceive

toxic chasm
indigo locust
#

did my colors changed or am i tweaking??? now it looks even more cheesy!!!!

toxic chasm
toxic chasm
#

All of my mods have secretly been malware PEAK_Evil

indigo locust
#

We know

toxic chasm
indigo locust
#

a secret is something you whisper to someone end then they whisper to someone else and so on

limber portal
thorny wagon
#

I wish atomic was real

limber portal
#

I wish rodrigo stop randomly throw tomatoes at my PC (my AV's don't like them for some reason)

limber portal
#

Why is the slow mo 30 minutes

thorny wagon
#

Why is slowmode 1 year 4 days 6 hours 58 mins and 5 seconds

limber portal
vale kraken
#

Why

limber portal
vale kraken
#

How

thorny wagon
#

who

limber portal
vale kraken
#

Where

toxic chasm
#

china

toxic chasm
limber portal
#

wow
so many movement here
wow
I can't see what you're typing cuz of the movement
wow

thorny wagon
#

why

vale kraken
#

What

thorny wagon
#

Whom

#

Whomst

limber portal
#

Where