#games with csharp
Explore tagged Tumblr posts
Text
youtube
In this video I will present you with my first simple game, made with c# programming language. In this game, the user has to guess five hidden numbers in the right order. The hidden numbers are chosen from 1 to 9 randomly, but each number occurs only once. The user will receive color feedback with each attempt to guess the hidden sequence, and the user needs to keep remembering the previous guesses and all previous feedback to improve its next guess. Please watch the video to the end to understand all the details.
#game#simple game#2d game#mind game#memory game#games with csharp#fun games#pc games#games for windows#Youtube
0 notes
Text
We made a game for GBJAM 12! It's a spooky maze exploration game with a giant Bat Monster :)
#game dev#indie dev#indie#monogame#csharp#gameboy#game jam#indie game#game development#horror#horror game#spooky#free game
139 notes
·
View notes
Text
i love coding bc i copy every single thing that the guy from "hello world" tutorial does and still somehow my program deletes windows
11 notes
·
View notes
Text
I miss being a simple code monkey with not so many responsibilities... *Mentally exhausted after leading 4 meetings and doing pair programming*
#cosmickittytalk#codeblr#girls who code#csharp programming#programming#gamedev#game developers#im dying
6 notes
·
View notes
Text
I don't support death threats but if a company is clearly destroying people's livelyhood i won't say anything

58 notes
·
View notes
Text
Programming is so fun whaatt the hell
I even enjoy the rabbit holes I fall down trying to learn something new/solve a problem; there's so much vocabulary I don't know so I end up looking for a solution and then needing to search "what does [funky coding word] mean" every few mins LOL
And the flow is just so nice once I understand what Im doing! You get into a groove n you're just typing code for hours while listening to music or a podcast or whatever aaaahhh
#I'm entirely new to everything so its all super exciting!!#ive started learning c-sharp for game development.. but I love how many languages there are to learn#feels like there's always something new I can do/learn with programming#will I ever run out of fun??#Im almost certain any programmer reading this is thinking 'enjoy this excitement while it lasts..' LMAO but I am and I WILL#feli thoughts#codeblr#programming#csharp#game development#game dev
25 notes
·
View notes
Text
What is the difference between a command and an event?
Events can be used to implement commands, but events do not functionally follow the command pattern.
Commands are a request for part of the system to perform an action. This can look different depending on your implementation, a command can look like any class inheriting from a base class or interface, with a common function which can be called when needed.
Below is an example of how it's used in an Inventory system:
Public class ExampleItem : IItem
{
virtual void OnUse() { Command logic goes here }
}
Commands only call one thing, the execute function may perform multiple actions, but the command itself when called just runs the excution function. This is what differs commands from events. An event is a call to anything that is listening to it, that something has happened, possibly some information about it, and then it allows anything listening to respond accordingly, it does not directly call functionality.
An example of where the command pattern may be used is in an Inventory System UI. A button could be placed for 'Use' which will use the selected item. Instead of hard coding the button on how it should use each item type, or worse changing the button each time, the button can have a reference to which item is currently selected. And call the 'OnUse()' on that item when the button is pressed.
If (UseButton.IsPressed()
{
SelectedItem.OnUse();
}
SelectedItem can just have it's value changed to point to a different object whenever the user selects a new item.
To do this using events, each event instance would have to listen to an event on the button, which would pass over what item type had been used. Then all of the item instances would have to check if that was them, and execute OnUse() if it was. This can be far more inefficient than calling directly, especially if there's a lot of items, items which inherit from other item types or when multiple instances of an item type exist and only differ by information, meaning all of the information about the item being used would have to be passed over to compare, and this comparison would have to be done by every instance of an Item.
4 notes
·
View notes
Text
Fellow game devs who are fleeing Unity, what are your thoughts on Godot vs Unreal for making 2D games? I know Unreal is pretty over-powered for most 2D development, but given I'm used to Unity, how is Godot feature-wise? Are there any features it's noticeably lacking?
#basically my question is whether the added annoyance of unreal is worth it#because i can code in c++ well enough but csharp and python are my languages of choice#so i am not loving this unity change!#especially given how much time i've poured into learning how to use it effectively#i have libraries that i reuse in my games!!#argh#idk i will obviously be looking into this more on my own but any insight would be lovely#also apologies for the tag spam -- i'd like this to reach other devs and idk what the common tags are on here#game development#game dev#indie dev#unity#unreal#godot#unity engine
19 notes
·
View notes
Text
If I ever spell enqeueue right in the first try that is not me fire at will
2 notes
·
View notes
Text
Teaching an Eyeball to be Petty
Hello! I’m going to be away for most of my normal writing days this weekend, so I’ve edited together a little video about designing and animating my game’s main villain.
youtube
Topics covered include:
Porting enemy C# scripts and behaviors from Unity to Godot 3.5
Applying character animation that responds to physics and UI
Structuring characters for flexibility/reuse in different parts of a game
Using animation to instill a .png file of a circle with visible malice
Anyways, that's all I'm going to allow myself to write tonight. I've got things to do!
Happy Halloween!
View On WordPress
#animation#CSharp#Doorways 9#gamedev#godot#indie games#indiegamedev#screenshotsaturday#ui#unity#Youtube
5 notes
·
View notes
Text
The cloning wand is in the game now!
31 notes
·
View notes
Text
youtube
The first Level is ready to be played ! I add all the basics to have a proper game, my first solo game project ;)
The full project is on Github : https://github.com/papytie/GoblinDefense
You can Now Download and play it here : https://etienneheller.itch.io/goblindefense-alpha
#gamedev#indiedev#3d animation#video games#game development#programming#unity engine#unity3d#csharp#Youtube
2 notes
·
View notes
Text
So is no one going to talk about how the CEO of Unity resigned? Like 👀
#unity game engine#unity game development#unity#unity 3d#everyone liked that#csharp programming#game developers#game development#haha#finalllyyyyy#codeblr
65 notes
·
View notes
Text
Atualmente, há 21 caminhos diferentes para serem instanciados, sendo alguns, ao longo do percurso, intermitentes, a fim de dificultar e introduzir variabilidade.
There are currently 21 different paths to be generated, some of them have broken pieces to increase the difficulty and variability.
2 notes
·
View notes
Text
Today I worked more on coding my text-based adventure game because that's what most people learning game development seem to start out with
And for two hours I was stuck trying to figure out how to make it so that if the player typed something wrong, it would print text that suggested what they typed wouldn't work, then allow them to type something valid which would continue the story where they left off.
Originally when I added the "else" section and tested it, the program would just print the text and end if I typed something invalid. I tried to make the code for the story's progression all one big method I could call back to once the player typed something invalid, which worked! Except I wanted it to print out different invalid text depending on where they were in the story.
Tried a billion confusing things on my own because I dont know enough programming vocabulary to search for the solution I was looking for, until I realized that the thing I was trying to do is covered in a C# tutorial I never finished 😭😭
#at least Im FAIRLY certain it is#i saw someone talk about 'loops' in a forum and it sounded like exactly what I was looking for#we'll see ig#it would make sense for them to cover it though#what Im trying to do doesn't feel like it should be too complicated#good to exercise my brain a lil and look for different ways to solve my problem though#even if what I was trying to do wasn't working#feli thoughts#csharp#game development#codeblr#programming
15 notes
·
View notes