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
#define AVERAGE_OUTPUT | |
using UdonSharp; | |
using UnityEngine; | |
[DefaultExecutionOrder(1000000000)] | |
public class GlobalProfileHandler : UdonSharpBehaviour | |
{ | |
public UnityEngine.UI.Text _timeText; | |
private GlobalProfileKickoff _kickoff; |
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
# | |
# Copyright 2015 Johannes Donath <[email protected]> | |
# and other copyright owners as documented in the project's IP log. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
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
public static List<Location> sphere(Location l, double radius){ | |
return sphere(l, radius, 64); | |
} | |
public static List<Location> sphere(Location l, double radius, int iterations){ | |
List<Location> list = new ArrayList<>(); | |
for(int i = 0; i < iterations; i++){ |
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
package com.oresomecraft.BattleMaps.maps; | |
import net.minecraft.server.v1_6_R2.Enchantment; | |
import org.bukkit.*; | |
import org.bukkit.event.Listener; | |
import org.bukkit.inventory.*; | |
import org.bukkit.inventory.meta.ItemMeta; | |
import org.bukkit.potion.*; | |