完全にこれは全て自分の憶測だけど、もし出るなら旧CS:GOのMM(公式マッチ)は無くなり、
既存のプレイヤーは基本的に全員移行する形になると思う
じゃあなんで旧クライアントを残すのかというとデディ鯖があるから
全てをSource2に完全移行すると今までのSourceMod資産が使えなくなる
(これは確実、S1とS2はそもそもコードが違う)
たぶんデディ鯖はCS:GO2ではサポートされないと思う
(Dota2はいまだにサポートされてない)
つまりゾンビエスケープなどで遊べなくなるから
逆になんで今までの旧CS:GOでMM消すのというのは、
これからワークショップのスキンの提出はCS:GO2だけになって新しい課金アイテムはCS:GO2でだけリリースされる形になるから
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
| @tool | |
| class_name DynamicArrayMesh extends ArrayMesh | |
| @export_tool_button('Add Surface') | |
| var add := func(): surface_count += 1 | |
| @export_tool_button('Remove Surface') | |
| var remove := func(): surface_count -= 1 | |
| @export var surface_count: int = 1: | |
| set(value): |
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
| import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
| class Item { | |
| final String name; | |
| final int price; | |
| Item(this.name, this.price); | |
| } | |
| final inventoryProvider = |
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
| /* | |
| Oyasumi Command v1.0.0 | |
| by aoisensi | |
| License: WTFPL | |
| 使い方 | |
| 以下のコードをOMORI起動毎にコンソールに丸々コピペすれば準備完了 | |
| 表示したいスイッチや変数を | |
| oyasumi.printer = "s1,s100,v143"; |
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
| AUTO ETERNITY 10 x highest | |
| AUTO INFINITY 1e25 x highest | |
| WHILE TOTAL TT < 162 { | |
| STUDIES PURCHASE 11-62 TIME 111 ACTIVE 151-171 | |
| } | |
| STUDIES RESPEC | |
| ETERNITY | |
| IF EC1 COMPLETIONS < 3 { |
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 main | |
| import ( | |
| "net/http" | |
| "strconv" | |
| ) | |
| var counter int | |
| func main() { |
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
| [ | |
| "1枚目:1話\n次回予告時のやすな", | |
| "2枚目:1話、2話\n登校時のやすな", | |
| "3枚目:1話\n登校時、ソーニャに声をかけるやすな", | |
| "4枚目:1話、2話\n登校時、ソーニャに手首を極められたやすな", | |
| "5枚目:1話\n視聴者へ向けてやすなに紹介されるソーニャ", | |
| "6枚目:1話\nソーニャの肩に付いたごみをやすなが取ろうとする場面", | |
| "7枚目:1話\nソーニャがいつも気を張っている理由をやすなに説明する場面", | |
| "8枚目:1話\n花瓶を落として割ってしまったクラスメイトを見るやすな ", | |
| "9枚目:1話\n花瓶が割れた音を聞いてとっさに隠れたソーニャをからかうやすな ", |
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
| epsilon = 1e-6 | |
| def check_kmb(s: str): | |
| result = eval(s) | |
| if (686+epsilon) > result and result > (686-epsilon): | |
| print(s, '=', result) | |
| def func(s: str, n: int): | |
| if n == 10: | |
| check_kmb(s) |
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 main | |
| import ( | |
| "fmt" | |
| "os" | |
| ) | |
| const ( | |
| size = sqrt * sqrt | |
| sqrt = 3 |
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
| document.addEventListener('DOMContentLoaded', () => { | |
| const $navbarBurgers = <HTMLElement[]>Array.prototype.slice.call( | |
| document.querySelectorAll('.navbar-burger'), 0 | |
| ); | |
| $navbarBurgers.forEach((el) => { | |
| el.addEventListener('click', () => { | |
| const target = el.dataset.target!; | |
| const $target = document.getElementById(target); | |
| el.classList.toggle('is-active'); |
NewerOlder