try and try and fail
This commit is contained in:
parent
4e842461c1
commit
ce90611bc2
12
config.txt
Normal file
12
config.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
[gource]
|
||||||
|
auto-skip-seconds=0.001
|
||||||
|
max-file-lag=0.000001
|
||||||
|
seconds-per-day=15
|
||||||
|
background-colour=1F0C3B
|
||||||
|
highlight-users=true
|
||||||
|
user-scale=1.25
|
||||||
|
dir-font-size=11
|
||||||
|
file-font-side=9
|
||||||
|
key=true
|
||||||
|
viewport=1280x720
|
||||||
|
filename-time=2
|
@ -6,6 +6,10 @@ package com.mojang.minecraft.gui;
|
|||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
|
import com.mojang.minecraft.renderer.Tesselator;
|
||||||
import com.mojang.minecraft.renderer.Textures;
|
import com.mojang.minecraft.renderer.Textures;
|
||||||
import com.mojang.minecraft.gui.Screen;
|
import com.mojang.minecraft.gui.Screen;
|
||||||
import com.mojang.minecraft.gui.Font;
|
import com.mojang.minecraft.gui.Font;
|
||||||
@ -61,6 +65,7 @@ public class MenuScreen extends Screen
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void render(final int xm, final int ym) {
|
public void render(final int xm, final int ym) {
|
||||||
|
this.fill(0, 0, this.width, this.height, 537199872);
|
||||||
for (int i = 0; i < this.buttons.size(); ++i) {
|
for (int i = 0; i < this.buttons.size(); ++i) {
|
||||||
final Button button = this.buttons.get(i);
|
final Button button = this.buttons.get(i);
|
||||||
this.fill(button.x - 1, button.y - 1, button.x + button.w + 1, button.y + button.h + 1, -16777216);
|
this.fill(button.x - 1, button.y - 1, button.x + button.w + 1, button.y + button.h + 1, -16777216);
|
||||||
|
1
startgource.bat
Normal file
1
startgource.bat
Normal file
@ -0,0 +1 @@
|
|||||||
|
gource --load-config config.txt
|
Loading…
x
Reference in New Issue
Block a user