Unity Game Dev - Conveyor Belts!

  Рет қаралды 40,564

BWDev

BWDev

Күн бұрын

Wishlist Lumbermill on Steam here!
store.steampowered.com/app/11...
The second devlog for my Unity game, Lumbermill. This week I've added the first part of the Factory - Conveyor Belts!
Videos will be uploaded every Friday as development progresses so make sure to subscribe!
Let me know if you have any ideas or suggestions in the comments, I'd love to hear them.
First video: • Procedural Forests! In...
Aseprite: www.aseprite.org/
-- Social Media --
Instagram - / benwimsett
Twitter - / bwdev1
Trello - trello.com/b/M6rEUFrM/lumberm...

Пікірлер: 46
@ivey3245
@ivey3245 4 жыл бұрын
Can't tell you how much I love your art style
@Woodythehobo
@Woodythehobo 4 жыл бұрын
nice! I’m loving the Factorio / OpenTTD vibe. I like your workflow.
@eeeeeeeeeeeeee49
@eeeeeeeeeeeeee49 4 жыл бұрын
Im excited to play it since I saw your other video about it.
@lukepyle1818
@lukepyle1818 4 жыл бұрын
Bro this is really cool!
@GMGuru
@GMGuru 5 жыл бұрын
Looking good! The factory belt sprite is really clean. Enjoying the art style keep it up :)
@BWDev
@BWDev 5 жыл бұрын
Thanks!
@erikm9768
@erikm9768 Жыл бұрын
Well its like 8 by 8 pixels? :D
@tghhh19
@tghhh19 4 жыл бұрын
So awesome man, I'm brand new to game dev and unity. Thanks for the inspiration and good luck with everything. =)
@crushelnast6657
@crushelnast6657 4 жыл бұрын
Hope you do great
@69bruh
@69bruh 3 жыл бұрын
kzbin.info ! Youll need him!
@gold3ngam3s84
@gold3ngam3s84 4 жыл бұрын
lol, in the middle of the video he says "actual typing speed", me to big brain looking at the flashing line that goes next to the text moving at a million mph. XD
@FICHEKK
@FICHEKK 5 жыл бұрын
Great video!
@FrankyTaxi
@FrankyTaxi 2 жыл бұрын
used to watch this a lot of months back then i completely forgot everything so im restarting :)
@afrent9296
@afrent9296 3 жыл бұрын
Rewatching these vids
@bazerlo7779
@bazerlo7779 5 жыл бұрын
keep it up! :)
@ezrakornfeld8436
@ezrakornfeld8436 Жыл бұрын
You promise you’re typing in real speed but your system clock says otherwise
@JakeND
@JakeND 4 жыл бұрын
Do you have a tutorial on how to make conveyors? And make tiles snap to each other?
@mastr_1325
@mastr_1325 2 жыл бұрын
Did you find a tutorial?
@JakeND
@JakeND 2 жыл бұрын
@@mastr_1325 Nope
@pattech3960
@pattech3960 2 жыл бұрын
A curious question about Forest.cs is it an Abstract Class where your other classes like Tree, FactoryTile, Conveyor etc, inherits from Forest.cs class?
@SintaxErorr
@SintaxErorr 3 жыл бұрын
this probably wont get answers but how did you convert your mouse X,Y into isometric X,Y. im trying to to an isometric thing and ive been struggling with this for like 2 hours now
@Zawazuki
@Zawazuki 4 жыл бұрын
hype
@JohnVanderbeck
@JohnVanderbeck 4 жыл бұрын
Interesting. First time i've seen a Kanban board (Trello) done right to left instead of left to right.
@squeakybunny2776
@squeakybunny2776 3 жыл бұрын
What difference does it make... Why would one be right and one wrong... There is no such thing as using a trello board the wrong way...
@WeaselDev
@WeaselDev 3 жыл бұрын
the scene inspector look scary as frick
@chaoticprogramming
@chaoticprogramming 3 жыл бұрын
I need more conveyer details! I am trying to make my own :(
@ssjgokuidk119
@ssjgokuidk119 4 жыл бұрын
Can I possibly have a link to a tutorial on how you made the conveyor belts join up together? Thanks anyways!
@BWDev
@BWDev 4 жыл бұрын
Hi, unfortunately I don’t know of any tutorials on conveyors, but maybe look into marching squares and linked lists if you want somewhere to start - if you already know those topics just adapt them to make conveyors 😊
@RohakGaming
@RohakGaming 3 жыл бұрын
Can you please make a tutorial on how to make a game like this?
@SamSMBHS
@SamSMBHS 3 жыл бұрын
Hey, how do you handle the items on the conveyer belts? Because checking if the space is free one belt in front obviously doesnt work when this item would be actually moved in the same moment but just hasnt been checked. So do you check the items in an actual order? So if you have 100 items on a belt you would iterate through all 100 every second oder whatever?
@squeakybunny2776
@squeakybunny2776 3 жыл бұрын
Either you iterate using some logic to start with the log furthest up the conveyor belt and then the next each iteration. Or you use a recursive loop that checks if there is a log in the next spot
@ItsNat21_
@ItsNat21_ 3 жыл бұрын
Could you do a tutorial on the building system?
@khhs
@khhs 3 жыл бұрын
I can do something like it for you if u want. Just reply with the answer
@tritanicwolf518
@tritanicwolf518 3 жыл бұрын
TRAINS! But... considering conveyer belts are in the game it wouldn’t make much sense.
@riverpizza-hp2nj
@riverpizza-hp2nj 3 жыл бұрын
How do i spell the name of the pixel art drawing program?
@assa716
@assa716 4 жыл бұрын
2:35 how meta lol
@altf4thc
@altf4thc 5 жыл бұрын
With this method l, can you have multiple items on a single belt piece or side load items onto another belt as in factorio
@BWDev
@BWDev 5 жыл бұрын
No but multiple items per belt can be implemented quite easily! And yep side loading is possible using a machine called a combiner which I made in a recent video 👍
@altf4thc
@altf4thc 5 жыл бұрын
@@BWDev thanks for the quick response. I want to learn ecs and I figured a factorioish poc would work well which is how I found your video. I'm having issues coming up with a way to have items move along the belt without doing Collison checks of everything around it. I know factorio somehow only looks at the item ahead of it to check for distance.
@BWDev
@BWDev 5 жыл бұрын
I’m not sure how factorio’s system works but in mine the conveyors move items from the end first and work backwards, and each conveyor knows whether it is holding an item or not. The next conveyor in the chain just checks whether the next conveyor is holding an item and progresses if not 😊 No colliders or collision checks involved.
@dreadflint
@dreadflint 4 жыл бұрын
@@BWDev Sorry for the late addition, but could you explain how it works backwards? The second half of your comment makes it seem like each conveyor checks the one in front of it independently.
@BWDev
@BWDev 4 жыл бұрын
Cyber Kingdom I’m actually rewriting the conveyor belt system at the moment so there should be a video explaining it soon 😊 Old system wasn’t as effective as it could have been
@Famosy1
@Famosy1 3 жыл бұрын
Have you discord?
Adding Conveyor Belts to My New Game! | Devlog
5:51
Coding With Russ
Рет қаралды 4,2 М.
Procedural Forests! Indie Game Devlog
4:06
BWDev
Рет қаралды 63 М.
Мы никогда не были так напуганы!
00:15
Аришнев
Рет қаралды 4,6 МЛН
The child was abused by the clown#Short #Officer Rabbit #angel
00:55
兔子警官
Рет қаралды 20 МЛН
I’m just a kid 🥹🥰 LeoNata family #shorts
00:12
LeoNata Family
Рет қаралды 19 МЛН
3D Conveyor Belts in Unity Tutorial
6:59
Jayometric
Рет қаралды 13 М.
The Internet Played My Game (and it did not go well)
9:27
advancenine
Рет қаралды 199 М.
Building Satisfactory-like conveyor belts
7:52
vvcaw
Рет қаралды 5 М.
Creating a Living Forest Simulation for my Indie Game
8:34
Indie Game Devlog - Evolving Forest!
6:23
BWDev
Рет қаралды 15 М.
Animation vs. Geometry
9:17
Alan Becker
Рет қаралды 4,8 МЛН
3D Conveyor Belts Tutorial for Unity | 2023 Update
5:31
Jayometric
Рет қаралды 6 М.
Remake - Belt / Conveyor System Tutorial [Unity3D]
17:58
CodingWithRus
Рет қаралды 8 М.
Я ВЗЯЛ МАН ЮНАЙТЕД НА 10 СЕЗОНОВ...
30:20
СМОТРИ, КАКОЙ ВКУСНЫЙ ПИРОЖОК!
12:56
ViteC ► Play
Рет қаралды 1,2 МЛН