Add eonstrip and megasequence hands
This commit is contained in:
@@ -8,6 +8,8 @@
|
||||
quantic: 0x100,
|
||||
chronon: 0x1000,
|
||||
eonstrip: 0x10000,
|
||||
megasequence: 0x100000,
|
||||
cosmocycle: 0x1000000,
|
||||
};
|
||||
|
||||
function floorDiv(a, b) {
|
||||
@@ -93,9 +95,13 @@
|
||||
const xf = (cob % COBIE_UNITS.quantic) / COBIE_UNITS.quantic;
|
||||
const qf = (cob % COBIE_UNITS.chronon) / COBIE_UNITS.chronon;
|
||||
const cf = (cob % COBIE_UNITS.eonstrip) / COBIE_UNITS.eonstrip;
|
||||
const ef = (cob % COBIE_UNITS.megasequence) / COBIE_UNITS.megasequence;
|
||||
const mf = (cob % COBIE_UNITS.cosmocycle) / COBIE_UNITS.cosmocycle;
|
||||
document.getElementById('handXeno').style.transform = `rotate(${xf * 360}deg)`;
|
||||
document.getElementById('handQuantic').style.transform = `rotate(${qf * 360}deg)`;
|
||||
document.getElementById('handChronon').style.transform = `rotate(${cf * 360}deg)`;
|
||||
document.getElementById('handEonstrip').style.transform = `rotate(${ef * 360}deg)`;
|
||||
document.getElementById('handMegasequence').style.transform = `rotate(${mf * 360}deg)`;
|
||||
}
|
||||
|
||||
function initClock() {
|
||||
|
||||
Reference in New Issue
Block a user