Tumgik
#casualgame
spiritwarriorstudio · 11 months
Text
Check this Epic trailer I made for Pongo17 💚💜
5 notes · View notes
nlgame · 1 year
Text
Take a look at this cool landscape scene we have made - forest view!
2 notes · View notes
rodrigobonomo · 2 years
Text
2d art study group
Hi everybody! Last month I participated in the 2D Digital Illustration Study Group at Sesc Glória, where we were challenged to create a mockup of a game based on one of Sesc's environments. I chose the art studio, and turned it into a mobile casual idle/tycoon art production game. I loved meeting new faces during the process!
Tumblr media
~ <3
2 notes · View notes
aquaramelia · 1 year
Text
Pixel me Away with fresh graphics! ✨
Tumblr media
Play it on itch.io!
0 notes
sofa-dragon97 · 1 year
Photo
Tumblr media
New Me! We are trying something a little different this time! Come find me on Kick to be one of the firsts to see new emotes, stream themes, and new content! #simgame #casualstreamer #streaming #streamer #simulation #casualgame #twitch #supportsmallstreamers #casualstream #twitchstreamer #justchatting #smallstreamer #kickstreaming #kick #livestreaming #partnernotsponsor #waronbigenergy #beachnpeach #dubbyenergypartnership #artificialcolorfree #streamercommunity #gluttenfree #transparent #partner #ketofriendly #DubbyEnergy #dubbyenergy #ketofriendlyenergydrinks https://www.instagram.com/p/CpTcOmHtDgr/?igshid=NGJjMDIxMWI=
1 note · View note
johnnwfs · 1 year
Photo
Tumblr media
Been working on my mine sweeper like game. Added some help, ability to switch between tiles (a nice set and a placeholder set for now), small animation when tile is selected, scoring system (that needs to be fixed) etc. You can try it at https://johnnwfs.net/bombfinder and send feedback to [email protected] #gamemakerstudio2 #html5game #codingisfun #casualgame #inprogress (at Hutto, Texas) https://www.instagram.com/p/CoAPjxfOodZ/?igshid=NGJjMDIxMWI=
0 notes
lazyajju · 1 year
Text
youtube
My Fantastic Ranch - Take riding, flying and aerobatics lessons on the back of unicorns and dragons!
Available now on Steam, Epic Games, Xbox, PlayStation & Nintendo Switch
ABOUT GAME:- Train dragons and unicorns in your fantastic ranch. Build the perfect ranch to raise these magical creatures and become the best trainer in the enchanted kingdom!
0 notes
adultgamesbyandrae · 2 years
Text
Tumblr media
Part 6: Unlocking Setsuna's Gallery
0 notes
bloomdigital · 11 months
Text
Surprise! Happy Pride Month!
Wishlist on Steam Now!
Tumblr media
Hi gang,
We’ve been keeping this news a secret just so that we could celebrate Pride Month with a BIG reveal! 🌈 The sequel to our award-winning visual novel dating game LongStory is coming to Steam and Switch in early 2024!
💚About the game
LongStory 2 picks up right where we left off, which means… Our cast is just days away from starting high school and things are about to get even more AWKWARD. Hey, that’s life!
If you’re not familiar with LongStory, now’s a good time to check it out on Steam, Switch, iOS and Android.
👀 Demo when?
We’ve got some exciting plans leading up to launch (YES, we’re working on a demo) but first, we want to hear from YOU to *Insert Rupaul's voice here* make some decisions.
We’re planning a Kickstarter campaign that will allow us to collect the funds needed to polish the game and add some key features.
By taking 1 minute to 👉fill out this form👈, you’ll be helping us decide on the best rewards, stretch goals and the things that actually matter to you when it comes to supporting the development of indie games.
A HUGE thanks to all of you and we hope to share more details in the coming months!
💌 Don't miss the demo, sign up to our newsletter! 💌
67 notes · View notes
theclaudester · 1 year
Text
Good morning Peggle fandom
Tumblr media
47 notes · View notes
adamhousevgd · 1 year
Video
C# Advanced basics post-mortem
This time I decided if I want to make bigger projects, I needed to understand more specifically about the C# programming language I use and how it works so I can understand it to make the best fun games as possible.
I even made 3 short mini games as a little exercises to warm myself up.
What I learned
 different types of variables like doubles, characters, and colour.
different ways of how variables/ parameters add with each other, e.g.  float sum = (2 + 3) * (4 - (4 / 3)).
A better understanding of Enums and how the states can be used. e.g played dies or at main menu waiting for player to press play or restart, what happens next?  does he move a inch or not?
The calculated difference of float and int when dividing them respectfully such as calculating the nearest inside numbers (part of floats).
 Casting: Converts a variable to another variable. Eg int a = 5 into float a = 5.0f.
How more robust Lists can be, such as being counted, added, removed specifically or all selected, reversed, removed at range and etc. Also, an idea of what its generics are <>.
Different types of functions that can be used like voids, ints, floats and returning their parameters such as strings, ints and floats.
Functions store many parameters as much as they need. Also different types of functions can share the same name, except for the same types.
How effective and distinctive behaviour of If, if else and else statements of controlling mechanics.
Not to have so many if statements in a nested code otherwise it may affect performance of the game.
More detailed info, cleaner code, similarities to the ifs, if else, else statements and how complex switch Statements of how they execute with different variables to run code inside each of the cases and defaults.
the unique behaviour of breaks that break out of the code to execute outside code.
The Different types of loops such as For loops, for each loops, do while loops of how their used respectfully so it doesn't crash the computer on the wrong use.
Better understanding of Arrays of what the elements can contain such as ints, game objects, floats, bools, strings, doubles etc and how it can only be programmed to access their elements not outside its index or length.
How you can change array element values by code without setting its variables.
How for loop doesn't need to be specialised how many times to repeat the loop so it doesn't crash.
Advanced use of Coroutines such as Stopping Coroutines, waiting for seconds in real time (no matter how slow or fast the game is with time scale), how they can pass Parameters and strings to reference other functions and how the waitforseconds can be slowed or speed up by Time.TimeScale.
Passing arrays into void  returning functions like ints. The parameters can even have the same names of its variables and it won't cause an error.
How interesting is to model objects from classes each with their variables and to update them overtime.
How useful are constructors when passing variables.
How "this." refers to the class variable and outside the function parameters.
Difference of Objects create that get passed in Memory as references and values.
 More detail of Data encapsulation/visibility modifiers other than public or private. I learnt more such as Internal, protected modifiers, setting and getting variables.
 A deeper understanding of inheritance such as from Mono behaviour and from other classes such as behaviours, functions, properties and variables.
How Inheritance works with child game classes using override functions to override the virtual function from their parent classes to do something else.
Most functions, datatypes values including transforms which are inherited from Mono behaviour.
The pros and cons of method overloading, while good to use a variety of functions and parameters, but needs to be specific of which function and parameters to run.
The use of the Ternary Operator such as using ? (if) and : (else) respectfully like if statements.
Variable Attributes and such as [RequireComponent], [ExecuteInEditMode], [AddComponentMenu], [HideInInspector], [Range]and [TextArea] which are broadly useful to read and get components to reduce unexpected issues, and makes the life's easier for designers, respectfully.
 How static variables and functions can work together with each other's scripts without get components and creating objects. They also don't work with non-static variables and functions.
How Delegates can be used to subscribe or call events from scripts including statics
How to return value answers when adding or subtracting.
How to make log warnings and log errors execute by code in the console depending how the script is written.
-Pumpkins and Golems
The possibility that I can make a game based on its rigid body physics a little more than complex code. E.g dodging rolling pumpkins from a slope, etc
-Bombs Away
Being able to spawn bombs in-between min and max distances with floats randomly from one transform variable.
Being able to restrict players movement with floats, Vector 2 and if statements without using a box collider.
-Knife Hit
Able to add force on knife with either Space or Mouse keys respectfully without causing unwanted design issues or bugs.
Able to set the knife game object to be parent of the wood by collisions and turning off collisions with "Detect Collisions" by turning it false on the knife once collided.
Overall
It was a long and hard work to get a better understanding with these datatype concepts. But I'm glad that I've done it so I can get a better understanding of how C# works so that way once I start to make more complex games, I am more aware of how it works so its easier to understand, fix unexpected bugs, and work differant ways to execute code.
10 notes · View notes
your-online-shop · 10 months
Text
Tumblr media
KUMI X2 Pro TWS Gaming Bluetooth Earphone 5.1 IPX5 Waterproof. The Ultimate Gaming Earphone.
Original price : 213.08 MAD 21.33 $
Now price : 159.83 MAD 😍 15.99 $
Featured brands | Shipped within 72 hrs.
Check the link for more info : https://s.click.aliexpress.com/e/_DmyTbLT
Experience the ultimate gaming audio with the KUMI X2 Pro TWS Gaming Bluetooth Earphone 5.1 IPX5 Waterproof.
These earphones deliver crystal-clear sound and deep bass, allowing you to immerse yourself in your favorite games.
With Bluetooth 5.1 technology, you can enjoy a stable and seamless connection, while the IPX5 waterproof rating ensures that you can game in any environment.
Whether you're a casual or professional gamer, the KUMI X2 Pro TWS Gaming Bluetooth Earphone 5.1 IPX5 Waterproof is the perfect accessory for your gaming setup.
2 notes · View notes
gamerologizm · 1 year
Photo
Tumblr media
#Bakery #BakeryStory #TeamLava #Storm8 #DeviceGaming #CasualGaming #MobileGaming #Gamerologizm.com previously #SupremeDynasty #Gamerologizm http://stm.gamerologizm.com/s8/bakery https://www.instagram.com/p/Cqc33yar31R/?igshid=NGJjMDIxMWI=
2 notes · View notes
lazyajju · 2 years
Text
youtube
My Fantastic Ranch - Official Reveal Trailer
Coming to PC, Xbox, PlayStation & Nintendo Switch on Nov 17, 2022 Add to wishlist on Steam & Epic Games.
ABOUT GAME:- Train dragons and unicorns in your fantastic ranch. Build the perfect ranch to raise these magical creatures and become the best trainer in the enchanted kingdom!
Take care of your fantastic creatures: Give fun lessons: Become the most famous ranch in the kingdom: A colourful and fun game for all ages:
1 note · View note
adultgamesbyandrae · 2 years
Text
Tumblr media
Part 5: Unlocking Akane's Gallery
0 notes
dybses · 1 year
Text
Happy New year everyone! This year I decided to try something new and make a simple game about an octopus who wants to get home
Tumblr media
2 notes · View notes