mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-04-12 05:43:20 +00:00
Merge pull request #577 from SquidDev-CC/ComputerCraft/feature/get-blink
Add .getCursorBlink to monitors and terminals
This commit is contained in:
commit
33fad2da15
@ -64,7 +64,8 @@ public class TermAPI implements ILuaAPI
|
||||
"setPaletteColour",
|
||||
"setPaletteColor",
|
||||
"getPaletteColour",
|
||||
"getPaletteColor"
|
||||
"getPaletteColor",
|
||||
"getCursorBlink",
|
||||
};
|
||||
}
|
||||
|
||||
@ -284,6 +285,9 @@ public class TermAPI implements ILuaAPI
|
||||
}
|
||||
return null;
|
||||
}
|
||||
case 23:
|
||||
// getCursorBlink
|
||||
return new Object[] { m_terminal.getCursorBlink() };
|
||||
default:
|
||||
{
|
||||
return null;
|
||||
|
@ -66,7 +66,8 @@ public class MonitorPeripheral implements IPeripheral
|
||||
"setPaletteColor",
|
||||
"getPaletteColour",
|
||||
"getPaletteColor",
|
||||
"getTextScale"
|
||||
"getTextScale",
|
||||
"getCursorBlink",
|
||||
};
|
||||
}
|
||||
|
||||
@ -245,8 +246,12 @@ public class MonitorPeripheral implements IPeripheral
|
||||
// getTextScale
|
||||
return new Object[] { monitor.getTextScale() / 2.0 };
|
||||
}
|
||||
case 25:
|
||||
// getCursorBlink
|
||||
return new Object[] { terminal.getCursorBlink() };
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -258,6 +258,10 @@ function create( parent, nX, nY, nWidth, nHeight, bStartVisible )
|
||||
end
|
||||
end
|
||||
|
||||
function window.getCursorBlink()
|
||||
return bCursorBlink
|
||||
end
|
||||
|
||||
local function isColor()
|
||||
return parent.isColor()
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user