Zach Attakk Codes
Zach Attakk Codes
  • 22
  • 1 572
Making Snake in TIC-80 - Part 1, Snake head, grid, basic movement
Let's get something moving on screen, draw a grid for it to move on, and then store inputs until we need to change direction.
Find the code here: bit.ly/classic_snake
- TIC-80 Dev Mode: ua-cam.com/video/LU0NZ-gvvHQ/v-deo.html
- TIC-80 Console Commands: ua-cam.com/video/gAaifeCTwko/v-deo.html
- TIC-80 Sprite Editor: ua-cam.com/video/cIm3VA-WUs4/v-deo.html
- Lua cheatsheet: devhints.io/lua
- TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/
TIC-80:
- Official website: tic80.com/
- Wiki Documentation: github.com/nesbox/TIC-80/wiki
Chapters:
00:00 - Intro
01:40 - Getting situated
04:27 - Start coding
06:13 - Draw a grid
11:33 - Refactoring!
15:39 - Input buffer
24:03 - Make the grid square
Переглядів: 31

Відео

How to TIC-80 - Music Editor
Переглядів 120Місяць тому
How to make bleepy bloopy melodies in TIC-80. Watch the SFX Editor video first: ua-cam.com/video/uZCS_Y4ElXU/v-deo.html TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Intro 00:53 - General layout 02:06 - Tracks with frames with patterns with notes 02:40 - Programming notes 04:54 - Commands (effects) 16:38 - Playback controls 19:34 - ...
How to TIC-80 - SFX Editor
Переглядів 31Місяць тому
How to make bleepy bloopy noises in TIC-80. TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Intro 00:30 - General layout 01:30 - Oscilloscope and wave table 02:43 - Volume/Wave (and piano roll) 06:04 - Arpeggio 07:53 - Pitch 09:29 - Looping 13:40 - Cuing sounds with sfx() 17:44 - Example explosion sfx 19:04 - Example coin pickup sfx 2...
How to TIC-80 - Tilemap Editor
Переглядів 36Місяць тому
How to make maps in the tilemap editor of TIC-80. TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Intro 01:13 - F3 for map editor 02:08 - Copypasta 02:24 - World map 03:16 - Show/hide grid 03:39 - Draw tool 04:00 - Drag tool 04:40 - Select tool 05:46 - Fill tool 06:28 - Tile select 08:26 - map() function
How to TIC-80 - Sprite Editor
Переглядів 110Місяць тому
How to make pixel art in the sprite editor of TIC-80. Kenney 1-Bit art: kenney.nl/assets/tag:1-bit TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Intro 00:28 - Copypasta 00:45 - There's two sheets 01:48 - Navigating the sheet 02:23 - Larger sprites (canvas zoom) 03:10 - Actually draw 03:45 - Toolbox 07:47 - Sprite manipulation (flip,...
How to TIC-80 - Code Editor
Переглядів 67Місяць тому
How to get around the code editor and be productive TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Intro 00:32 - Copypasta 01:41 - Run 02:00 - Drag (touch scroll) 02:44 - Find 03:59 - Goto 05:08 - Bookmarks 06:42 - Outline 08:35 - Quick function reference tip 09:55 - Syntax highlights
How to TIC-80 - Console Commands
Переглядів 266Місяць тому
What can you do in the TIC-80 console? Lots of things! TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Making Pong Tutorial: ua-cam.com/play/PLFSr5sRPYh65sNuTylwTiXm3Ma-EygIXz.html Chapters: 00:00 - help 00:35 - surf 02:32 - cd 02:49 - dir / ls 03:59 - load 05:21 - mkdir 06:21 - new 07:57 - save 08:21 - run 09:00 - del 10:26 - config 11:03 - export 12:...
How to TIC-80 - A Better Coding Experience
Переглядів 145Місяць тому
First we enable Dev Mode to get to our code quickly, and then we dive into the config file to change how our code looks TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Intro 00:46 - Dev Mode 01:15 - Alt font and shadow text effect 03:19 - Config file 07:32 - Fix a broken config file 08:05 - Open the menu in Dev Mode
Making Pong in TIC-80 - Part 13, Add curve balls and publish
Переглядів 31Місяць тому
Sounds on the main menu, allow players to change the direction of the ball, and then the big step, WE PUT OUR GAME ONLINE FOR PEOPLE TO PLAY! TIC-80: - Official website: tic80.com/ - Cheatsheet: zenithsal.com/assets/documents/tic-80_cheatsheet.pdf - Wiki Documentation: github.com/nesbox/TIC-80/wiki Find the code here (including sprites): bit.ly/classic_pong Chapters: 00:00 - Menu sound effects ...
Making Pong in TIC-80 - Part 12, Make start menu
Переглядів 24Місяць тому
Build a state machine so we can show a main menu to choose control scheme. Further reading Intro to state machines: gameprogrammingpatterns.com/state.html TIC-80: - Official website: tic80.com/ - Cheatsheet: zenithsal.com/assets/documents/tic-80_cheatsheet.pdf - Wiki Documentation: github.com/nesbox/TIC-80/wiki Find the code here (including sprites): bit.ly/classic_pong Chapters: 00:00 - State ...
Making Pong in TIC-80 - Part 11, On screen controls, keyboard controls
Переглядів 42Місяць тому
Show controls on screen, add proper keyboard controls, and let player decide what controls scheme to use in the game menu. Further reading TIC-80: - Official website: tic80.com/ - Cheatsheet: zenithsal.com/assets/documents/tic-80_cheatsheet.pdf - Wiki Documentation: github.com/nesbox/TIC-80/wiki Find the code here (including sprites): bit.ly/classic_pong Chapters: 00:00 - Bug fix 02:08 - Pixel ...
Making Pong in TIC-80 - Part 10, More start screen improvements
Переглядів 22Місяць тому
Wouldn't it be cool if a player can choose which way the ball launches? Further reading TIC-80: - Official website: tic80.com/ - Cheatsheet: zenithsal.com/assets/documents/tic-80_cheatsheet.pdf - Wiki Documentation: github.com/nesbox/TIC-80/wiki Find the code here: bit.ly/classic_pong Chapters: 00:00 - Remember to save! 00:19 - Move ball to player's paddle 02:32 - Let paddles move during start ...
Making Pong in TIC-80 - Part 9, Fix score, let players serve, better controls
Переглядів 28Місяць тому
Display the score a little differently, move the ball in front of the player who's in control, fix the buttons for Player 2, maybe add a cheeky sound effect. Further reading TIC-80: - Official website: tic80.com/ - Cheatsheet: zenithsal.com/assets/documents/tic-80_cheatsheet.pdf - Wiki Documentation: github.com/nesbox/TIC-80/wiki Find the code here: bit.ly/classic_pong Chapters: 00:00 - Remembe...
Making Pong in TIC-80 - Part 8, Start screen, wait for player input
Переглядів 7Місяць тому
First we need to fix the debugging stuff from the previous episode, then we make a screen that give players a chance to breath before the next round begins. Further reading TIC-80: - Official website: tic80.com/ - Cheatsheet: zenithsal.com/assets/documents/tic-80_cheatsheet.pdf - Wiki Documentation: github.com/nesbox/TIC-80/wiki Find the code here: bit.ly/classic_pong Chapters: 00:00 - Remove d...
Making Pong in TIC-80 - Part 7, Bug fixing collisions and speeding up
Переглядів 182 місяці тому
Making Pong in TIC-80 - Part 7, Bug fixing collisions and speeding up
Making Pong in TIC-80 - Part 6, Reset function and keeping score
Переглядів 182 місяці тому
Making Pong in TIC-80 - Part 6, Reset function and keeping score
Making Pong in TIC-80 - Part 5, Collisions
Переглядів 232 місяці тому
Making Pong in TIC-80 - Part 5, Collisions
Making Pong in TIC-80 - Part 4, Paddle 2 and the ball
Переглядів 972 роки тому
Making Pong in TIC-80 - Part 4, Paddle 2 and the ball
Making Pong in TIC-80 - Part 2, Making a paddle move
Переглядів 1102 роки тому
Making Pong in TIC-80 - Part 2, Making a paddle move
Making Pong in TIC-80 - Part 3, Paddle limits and a bit of OOP
Переглядів 812 роки тому
Making Pong in TIC-80 - Part 3, Paddle limits and a bit of OOP
Making Pong in TIC-80 - Part 1, Paddles and ball
Переглядів 2562 роки тому
Making Pong in TIC-80 - Part 1, Paddles and ball

КОМЕНТАРІ

  • @MennoHoman
    @MennoHoman 24 дні тому

    Personally for me it would read a bit better if you do: if val < min_val return min_val if val > max_val return max_val return val

  • @MALACELESTE
    @MALACELESTE Місяць тому

    hi Zach, Nice and interesting informations.

  • @ZachAttakkCodes
    @ZachAttakkCodes 2 роки тому

    Try to count how many times I save!😹

  • @ZachAttakkCodes
    @ZachAttakkCodes 2 роки тому

    Get TIC-80! Code along! tic80.com/create😉💻