Action | Keys |
---|---|
Toggle Object/Edit Mode | Tab |
Move | G |
Rotate | R |
Scale | S |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Wall Following Stripe Builder for ComputerCraft | |
-- Follows walls and replaces breakable blocks on the current Y level only | |
-- Direction tracking | |
local directions = {"north", "east", "south", "west"} | |
local currentDirection = 1 -- 1=north, 2=east, 3=south, 4=west | |
-- Configuration | |
local config = { | |
stripeBlock = "chisel:concrete_black1", -- Block to place for stripes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Torus Stripe Builder for ComputerCraft | |
-- Adds horizontal stripes to an existing torus structure | |
-- Direction tracking | |
local directions = {"north", "east", "south", "west"} | |
local currentDirection = 1 -- 1=north, 2=east, 3=south, 4=west | |
-- Forward declarations | |
local moveToPosition |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copy and paste this code into your browser's javascript console. | |
Now you can use: | |
- nextLoop() to keep clicking next until it becomes disabled | |
- skipNext() to skip the current video and click the next button | |
- clickAllNext() to click all the little hotspot things and click the next button | |
*/ | |
/* | |
(function() { let v = document.querySelector("video"); v.currentTime = v.duration; v.dispatchEvent(new Event("ended")); v.playbackRate = 100; })() |