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
diff --git a/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs b/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs | |
index bb623b1..dbc6ef9 100644 | |
--- a/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs | |
+++ b/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs | |
@@ -262,6 +262,7 @@ namespace SplineMesh | |
var uv6 = new List<Vector2>(); | |
var uv7 = new List<Vector2>(); | |
var uv8 = new List<Vector2>(); | |
+ float uvStep = 1.0f / repetitionCount; | |
for (int i = 0; i < repetitionCount; 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
// ==UserScript== | |
// @name Booth Ignore Search | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1.6 | |
// @description Boothの検索結果から特定のキーワードを除外します(正規表現可能) | |
// @author Angeart | |
// @match https://booth.pm/* | |
// @icon https://www.google.com/s2/favicons?domain=booth.pm | |
// @grant none | |
// ==/UserScript== |
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
using UnityEngine; | |
public class AutoAssignAttribute : PropertyAttribute | |
{ | |
} |
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 enum ItemCategory | |
{ | |
Consumption, | |
Wearable, | |
Event, | |
} | |
// ここ必須 | |
[Serializable] | |
public class ItemCategoryStringEnum : StringEnum<ItemCategory> |
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
Complete command list of NotSoBot <439205512425504771>: | |
Owner: NotSoSuper <296044494812479498> | |
Prefix: . | |
* = Not Required | |
^ = Bot Owner Only | |
^^ = Server Admin Only | |
"/'s" in commands show aliases for the command (Ex: ".reverse/r <text>" Command can be run with .reverse or .r) | |
<max_messages> = The number of messages to search through | |
<image> = The image URL, @discord_user, the users name, discord/custom emoji, or, nothing inputted which will search through 25 messages for embeds or attachments | |
<image-face> = Image requires a HUMAN FACE to be included |
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
//META{"name":"Dark_Matter","description":"A cold, dark & frosty theme","author":"Hammock (CosmicSalad)","version":"2.0.0"}*//{} | |
@import url(https://fonts.googleapis.com/css?family=Karla); | |
/* | |
MAIN VARS | |
Change these to modify dark matter's colors. | |
*/ | |
:root { | |
--main-color: rgba(37,172,232,1); |
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
// This file is a "Hello, world!" in C++ language for wandbox-vscode. | |
#include <iostream> | |
#include <cstdlib> | |
#include <cstdint> | |
#include <type_traits> | |
#include <utility> | |
#include <memory> | |
#include <vector> | |
#include <array> | |
#include <boost/core/demangle.hpp> |
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
https://cmake.org/files/v3.11/cmake-3.11.1-Linux-x86_64.sh | |
sudo mkdir /opt/cmake | |
sudo sh cmake-3.11.1-Linux-x86_64.sh --prefix=/opt/cmake --skip-license | |
sudo update-alternatives --install /usr/bin/cmake cmake /opt/cmake/cmake-3.11.2-Linux-x86_64/bin/cmake 1 --force |
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
#include <iostream> | |
#include <cstdlib> | |
#include <boost/asio.hpp> | |
#include <boost/bind.hpp> | |
#include <boost/date_time/posix_time/posix_time.hpp> | |
#include <functional> | |
#include <thread> |
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
#pragma once | |
#include <cstdint> | |
#include "util/inherit.h" | |
namespace util { | |
namespace class_identity_detail { | |
using class_identifier_t = uint32_t; | |
struct identity_factory { | |
static class_identifier_t get_id() { | |
static class_identifier_t value = 0; |
NewerOlder