Main Page: Difference between revisions

From LD Smith Games Workshop
Jump to navigation Jump to search
 
(39 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__


This is the Workshop area for the latest project development updates.  For the complete listing of released games, please see [https://levidsmith.com/game-list/ LD Smith Games].
This is the Workshop area for the latest project development updates.  For the complete listing of released games, please see '''[https://ldsmith.games LDSMITH GAMES]'''.


== Updates ==
== Updates ==


=== October 2023 ===
* Migrated site to new server.  Working on getting website components working again. (main site, workshop wiki, leaderboards).
* Thinking about putting the leaderboard scores on its own subdomain (such as scores.levidsmith.com), but want to avoid having to update URLs compiled into game projects.
* Removed many of the old game wiki pages with little information.  Current plan is to use the workshop (wiki) for development documentation for new projects, then have the "official" pages on the main levidsmith.com site.  That should keep a clear separation between development and release information for projects.


=== December 2022 ===
=== April 2026 ===
* '''[https://levidsmith.com/games/christmas-tree-simulator/ Christmas Tree Simulator]''' - Updated user interface.  New tree model and collision mesh.
[[File:christmas-tree-simulator 20221218.jpg|200px|frameless|Christmas Tree Simulator]]
 
=== October 2022 ===
* '''[https://levidsmith.com/games/old-timer-peg-game/ Old Timer Peg Game]''' - Game created for 48 hour game jam
[[File:Peg-game 20221001 01.jpg|200px|frameless|Old Timer Peg Game]]
 
=== September 2022 ===
* '''[https://levidsmith.com/games/weather-lab Weather Lab]''' - Changed name of Turn Back the Clocks to Weather Lab.  Added selectable weather stations on a map of the United States.  When a station is selected the temperature, wind direction, and wind speed are shown on models of thermometers, wind vane, and anemometer.  Additional clocks added.  Weather and time zone data pulled from web APIs.  Outdoor lighting changes with time and location selected.
[[File:Weather-lab 630x500.jpg|200px|frameless|Weather Lab]]
 
 
=== August 2022 ===
* '''[https://levidsmith.com/games/turn-back-clocks Turn Back the Clocks]''' - Added two digital clocks and day calendar.  Added light switch.
[[File:Turn-back-the-clocks 20220822.png|200px|frameless|Turn Back the Clocks]]
 
 
=== July 2022 ===
* '''[https://levidsmith.com/games/polyglot-pelican/ Polyglot Pelican]''' - Changed title theme.  Fixed issue with enemy spawning after level complete.
* '''[https://levidsmith.com/games/shark-food/ Shark Food]''' - Fixed leaderboard submit/display.  Updated menus.  Fixed models/animations to use latest Blender/Unity.
 
[[File:Shark Food 20220705 01.jpg|200px|frameless|Shark Food]]
 
=== June 2022 ===
* '''[https://levidsmith.com/games/polyglot-pelican/ Polyglot Pelican]''' - Cleaned up menus
* '''[https://levidsmith.com/games/amish-brothers/ Amish Brothers]''' - Updated to Unity version 2021.3.  Improved text and menus.  I developed the original version of Amish Brothers in Unity 4.5 for a 48 hour game jam over nine years ago!  Added hat throwing mechanic.  Updated title and level complete screens.
* '''[https://levidsmith.com/games/eins/ Eins]''' - Posted online playable version to website and uploaded downloadable builds for PC/Mac/Linux to GameJolt and Itch.  There are other things I wanted to add to the game, but I don't think I will get around to it anytime soon so I decided to go ahead and post the game.
 
[[File:Polyglot-pelican title.jpg|200px|frameless|Polyglot Pelican]] [[File:Amish-brothers 20220705 01.jpg|200px|frameless|Amish Brothers]] [[File:Eins 20220603 06.jpg|200px|frameless|Eins]]
 
=== May 2022 ===
* Lumi Pegs - a light color peg toy simulation.  Thinking about how to gamify this (make the pictures in a certain amount of time)
[[File:Lumi-pegs 20220605.jpg|200px|frameless|Lumi Pegs]]
 
 
=== April 2022 ===
* '''[https://levidsmith.com/games/possum-blitz/ Possum Blitz]''' - Game created in Pico-8 for 48 hour game jam
 
=== March 2022 ===
* '''Eins''' - Added music
* '''Eins''' - Updated graphics
 
=== February 2022 ===
* '''Eins''' - Updated card graphics.  Added additional card types.  Improved card movements.
* '''Eins''' - Working on finishing the rest of the functionality of this game to get it to a releasable state.  Implemented all number cards, skip cards, and reverse cards.  Added highlight feature to show which cards in the player's hand can be played.
 
[[File:Eins 20220227 002.jpg|200px|frameless|Eins - In development]] [[File:Eins 20220227 001.jpg|200px|frameless|Eins - In development]] [[File:Eins 20220210 001.JPG|200px|frameless|Eins - In development]]
 
=== January 2022 ===
* '''VR Putt''' - Three holes completed.  First hole is an L shape.  Second hole is the windmill.  Third hole is the circular ramp.
* '''[https://levidsmith.com/games/nomis/ Nomis]''' - Added leaderboards for Nomis.  Uploaded new web build and posted new desktop build to Itch.io and GameJolt.
* Resolved access management issue with leaderboard management for game
* '''VR Putt''' - Got club and ball collisions working properly.  The trick is to add a rigidbody to the club and freeze all constraints (position on three axes and rotation on three axes).  If the club does not have a rigidbody, collision events with the ball will frequently miss.  When the club collides with the ball, disable the collider on the club (until the next turn or reset).  Otherwise, the club may collide with the ball multiple times, which will feel janky.  Manually apply physics to the ball using AddForce and the normal from the collision between the club and ball.  This makes the hit feel clean but somewhat "arcadey", since there is only one impact point and unrealistic amount of force.  However, it prevents the user from having to swing like a real golf club since only touching the ball with the club is required.  I'm thinking the amount of force the player wants to use can be calculated by how far the grip button is pressed in (if that value is easily accessible).  The physics from the club is essentially eliminated, which was terrible anyway because moving the club with the VR controller doesn't make it act like a "normal" Unity physics object.  Also added HUD display showing number of strokes (recorded by the GameManager) and debug information.  Tried using two cameras (with the HUD camera set to not clear) so that the HUD text is always on top, but it didn't appear to work.  Added two physics materials, one for the ball and one for the ground with friction settings reduce from 0.8 to 0.1.
* '''VR Putt''' - Worked on VR Putt minigolf game using Oculus Quest.  Got new VR project created in Unity using new VR template.  Learned how to get an event when a VR controller button is pressed to reset the ball.  Created club out of two Unity cubes and a ball with Unity sphere.  Parented club to VR controller to make club move with right controller.  Collision between club and ball works, but does not give expected velocity to ball when hit.  This may not be an easily solved issue, so may just detect the collision and add velocity manually so that the club does not have to be swung quickly.
* '''[https://levidsmith.com/games/mutant-veggie-arena/ Mutant Veggie Arena]''' - Updated Mutant Veggie Arena to the latest version of Unity (2020.3.23f1) and Playmaker (1.9.4f2).  Web build now works again (collision issues resolved).
[[File:Nomis 20220108 001.jpg|200px|frameless|Nomis - Leaderboard added]] [[File:Vrputt 20220103 01.jpg|200px|frameless|VR Putt - New club model and HUD]] [[File:Vrputt 20220102 01.jpg|200px|frameless|VR Putt - Initial VR integration]]


* New Game '''[https://ldsmith.games/details/easter-egg-crash Easter Egg Crash]'''


- In this puzzle game, colored eggs (red, green, yellow blue) fall in pairs. You must crash the easter eggs using gems of the same color. Crash the number of eggs specified in the goals to move to the next level.


<!--
<!--
[http://eepurl.com/bOKWzL Subscribe to the mailing list to receive updates!]
[[File:Easter-egg-crash 001.jpg]]
-->
[[File:Easter-egg-crash 002.jpg]]
 
<!--
[[File:header.jpg]]
[[File:LevidsmithFlyer.jpg|256px|thumb|right|Levi D. Smith Games flyer]]
-->
-->


== Tools ==
== Tools ==


* [https://github.com/levidsmith/KnoxGameDesign/tree/master/passwords/nespasswd NES password generator] - API for generating NES game passwords
* [[Unity Build Tool]] - Update and build multiple Unity projects at once.  Upload to game hosting sites and more.
* [[Unity Build Tool]] - Update and build multiple Unity projects at once.  Upload to game hosting sites and more.
* [[Timelapse Maker]] - Make timelapse video from video clips
* [[Timelapse Maker]] - Make timelapse video from video clips
Line 89: Line 28:


'''Playable Games'''
'''Playable Games'''
*[https://gamejolt.com/@LeviDSmith/games GameJolt]
*[https://gamejolt.com/@ldsmith/games GameJolt]
*[https://ldsmith.itch.io/ Itch.io]
*[https://ldsmith.itch.io/ Itch.io]
*[http://www.kongregate.com/games/GaTechGrad Kongregate]
*[http://www.kongregate.com/games/GaTechGrad Kongregate]
Line 104: Line 43:
*[https://mewe.com/i/ldsmith42 MeWe]
*[https://mewe.com/i/ldsmith42 MeWe]
*[https://www.minds.com/LeviDSmith Minds]
*[https://www.minds.com/LeviDSmith Minds]
<!-- *[https://parler.com/LDSmith42 Parler] -->
*[https://app.parler.com/ldsmith42 Parler]
*[https://truthsocial.com/@ldsmith Truth Social]
*[https://truthsocial.com/@ldsmith Truth Social]
<!-- *<s>[http://twitter.com/ldsmith42 Twitter]</s> -->
<!-- *<s>[http://twitter.com/ldsmith42 Twitter]</s> -->
Line 111: Line 50:
'''Video'''
'''Video'''
*[https://www.brighteon.com/channel/levidsmith Brighteon]
*[https://www.brighteon.com/channel/levidsmith Brighteon]
*[http://www.dailymotion.com/gitcommand Dailymotion]
*[https://www.dailymotion.com/ldsmith Dailymotion]
*[https://dlive.tv/LDSmith DLive]
<!-- *[https://dlive.tv/LDSmith DLive] -->
*[https://vimeo.com/gatechgrad Vimeo]
*[https://vimeo.com/gatechgrad Vimeo]
*[https://odysee.com/@ldsmith:c Odysee]
*[https://odysee.com/@ldsmith:c Odysee]
Line 146: Line 85:
*[https://github.com/levidsmith GitHub]
*[https://github.com/levidsmith GitHub]
*[https://sourceforge.net/u/gatechgrad/profile/ SourceForge]
*[https://sourceforge.net/u/gatechgrad/profile/ SourceForge]
*[http://www.xboxindies.com/dev/levi-d-smith XBox Indies]
*[https://scratch.mit.edu/users/GaTechGrad/ Scratch]
*[https://scratch.mit.edu/users/GaTechGrad/ Scratch]
*[https://www.stencyl.com/users/index/187193 Stencyl]
*[https://www.stencyl.com/users/index/187193 Stencyl]
<!-- *<s>[http://www.gamasutra.com/blogs/LeviSmith/952708/ Gamasutra profile]</s> -->
<!-- *<s>[http://www.gamasutra.com/blogs/LeviSmith/952708/ Gamasutra profile]</s> -->


<!--
'''Discovery Engine'''
'''Discovery Engine'''
*[http://www.reddit.com/user/GaTechGrad/ Reddit]
*[http://www.reddit.com/user/GaTechGrad/ Reddit]
-->
<!-- *[https://www.reddit.com/r/LeviDSmithGames/ LD Smith Games Subreddit] -->
<!-- *[https://www.reddit.com/r/LeviDSmithGames/ LD Smith Games Subreddit] -->


<!--
'''Crowdfunding'''
'''Crowdfunding'''
*[https://www.patreon.com/levidsmith Patreon]
*[https://www.patreon.com/levidsmith Patreon]
-->


'''Profile'''
'''Profile'''
Line 175: Line 117:




'''Graveyard'''
<!-- '''Graveyard''' -->
<!--*[http://www.xboxindies.com/dev/levi-d-smith XBox Indies] -->
<!-- *[https://vid.me/levidsmith Vidme] -->
<!-- *[https://vid.me/levidsmith Vidme] -->
*[https://plus.google.com/+Levidsmith Google+]
<!-- *[https://plus.google.com/+Levidsmith Google+] -->
*[http://lanyrd.com/profile/levidsmith/ Lanyrd]
<!-- *[http://lanyrd.com/profile/levidsmith/ Lanyrd] -->
*[http://www.onegameamonth.com/GaTechGrad One Game a Month]
<!-- *[http://www.onegameamonth.com/GaTechGrad One Game a Month] -->
*[http://www.stumbleupon.com/stumbler/GaTechGrad StumbleUpon]
<!-- *[http://www.stumbleupon.com/stumbler/GaTechGrad StumbleUpon] -->
*[https://www.path.com/54a93df33be74afbfec0ad7f Path]
<!-- *[https://www.path.com/54a93df33be74afbfec0ad7f Path] -->
<!-- *[https://player.me/ldsmith Player.me] -->
<!-- *[https://player.me/ldsmith Player.me] -->


== Historical Pages ==
== Created Games ==
'''Games of 2025 '''
* [https://levidsmith.com/games/conway-shooter/ Conway Shooter 0x7e9]


*[https://levidsmith.com/historical/tekken3.htm Command.Com's Tekken 3 Page]
'''Games of 2024 '''
*[https://levidsmith.com/historical/soul/soulcal.htm Soul Calibur Domain]
* [https://levidsmith.com/games/worker-bees/ Worker Bees]
*[https://levidsmith.com/historical/ffvii.htm Final Fantasy VII Online Strategy Guide]
* [https://levidsmith.com/games/caves-and-critters/ Caves and Critters]
*[https://levidsmith.com/historical/ffviii.htm Final Fantasy VIII Domain]
*[https://levidsmith.com/historical/tekken_fmv/ Tekken FMV page]
*[https://levidsmith.com/historical/cshistory/jsp/ GITCommand's Computer Science Domain]
*[https://levidsmith.com/historical/homesite_2008/ Original levidsmith.com homesite (circa 2008)]
*[https://levidsmith.com/historical/gitcommands_domain/ GITCommand's Domain (circa 2005)]
*[https://levidsmith.com/historical/ufo/ufo.htm UFO page]
*[https://levidsmith.com/historical/whittling/ Whittling of Glen Smith]


== Created Games ==
'''Games of 2023 '''
'''Games of 2023 '''
* [https://levidsmith.com/games/air-delivery/ Air Delivery]
* [https://levidsmith.com/games/air-delivery/ Air Delivery]
Line 268: Line 205:
* [https://levidsmith.com/games/dropping-blocks Dropping Blocks]
* [https://levidsmith.com/games/dropping-blocks Dropping Blocks]
* [https://levidsmith.com/games/turn-back-clocks-3 Turn Back the Clocks 3]
* [https://levidsmith.com/games/turn-back-clocks-3 Turn Back the Clocks 3]
* [https://levidsmith.com/games/%e6%9d%b1%e4%ba%ac%e9%83%bd%e5%9c%b0%e4%b8%8b%e9%89%84%e3%82%b7%e3%83%9f%e3%83%a5%e3%83%ac%e3%83%bc%e3%82%bf 東京都地下鉄シミュレータ]
* [https://levidsmith.com/games/%e6%9d%b1%e4%ba%ac%e9%83%bd%e5%9c%b0%e4%b8%8b%e9%89%84%e3%82%b7%e3%83%9f%e3%83%a5%e3%83%ac%e3%83%bc%e3%82%bf Subway Simulator]
* [https://levidsmith.com/games/ancient-adventure Ancient Adventure]
* [https://levidsmith.com/games/ancient-adventure Ancient Adventure]
* [https://levidsmith.com/games/space-to-destroy Space to Destroy]
* [https://levidsmith.com/games/space-to-destroy Space to Destroy]
Line 341: Line 278:
* [https://levidsmith.com/games/tetracity/ TetraCity]
* [https://levidsmith.com/games/tetracity/ TetraCity]
* [https://levidsmith.com/games/legend-of-tux Legend of Tux]
* [https://levidsmith.com/games/legend-of-tux Legend of Tux]
== Historical Pages ==
*[https://levidsmith.com/historical/games/tekken3.htm Tekken 3 Page]
*[https://levidsmith.com/historical/games/soul/soulcal.htm Soul Calibur Domain]
*[https://levidsmith.com/historical/games/ffvii.htm Final Fantasy VII Online Strategy Guide]
*[https://levidsmith.com/historical/games/ffviii.htm Final Fantasy VIII Domain]
*[https://levidsmith.com/historical/games/tekken_fmv/ Tekken FMV page]
*[https://levidsmith.com/historical/homesite/2000 Homesite 2000]
*[https://levidsmith.com/historical/homesite/2005 Homesite 2005]
*[https://levidsmith.com/historical/homesite/2008 Homesite 2008]
*[https://levidsmith.com/historical/cshistory/jsp/ Computer science history]
*[https://levidsmith.com/historical/ufo/ufo.htm UFO page]
*[https://levidsmith.com/historical/whittling/ Whittling of Glen Smith]
*[https://levidsmith.com/historical/cards Greeting cards]
*[https://levidsmith.com/historical/computers Built computers]
*[https://levidsmith.com/historical/cards Greeting cards]
*[https://levidsmith.com/historical/quark Quark]
<!-- *[https://levidsmith.com/historical/vgcollection VG Collection] -->

Latest revision as of 18:19, 29 May 2026


This is the Workshop area for the latest project development updates. For the complete listing of released games, please see LDSMITH GAMES.

Updates

April 2026

- In this puzzle game, colored eggs (red, green, yellow blue) fall in pairs. You must crash the easter eggs using gems of the same color. Crash the number of eggs specified in the goals to move to the next level.


Tools

Links

Playable Games

Social Media


Video

Models

Images

Audio

Game Design


Profile


Gaming



Created Games

Games of 2025

Games of 2024

Games of 2023

Games of 2022

Games of 2021

Games of 2020

Games of 2019

Games of 2018

Games of 2017

Games of 2016

Games of 2015

Games of 2014

Games of 2013

Games of 2012

Older Games

Historical Pages