This account is not set to public on notestock.
Spoonailと読みます
色々ゲームするひと
あとちょっとしたソフトウェア開発など
※多い・雑多にもほどがある・フォロー/フォロバ気まぐれ
■HOT: Vintage Story、ARK、他好きなゲーム→ https://whiteblackspace.hatenablog.com/prof
■何か作る メイン/最近は・もかなり/ほどほど/C++ほんの少し/つくったものとかはここ
■で遊んだりほんの少しだけカスタム絵文字を作ったりごくまれにファンアートのような何か描きます
■20↑
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
elona差し替えまとめ | Spoonail #pixiv https://www.pixiv.net/artworks/91185600
頑張って48x96打った人もいるんですよ!!(
This account is not set to public on notestock.
歩行グラはPCCならデフォルトのやつにelonaのダウンロードページにあるグラフィックパック追加して使ってた
http://ylvania.style.coocan.jp/elona_top.html
パーツじゃなくて完成品はちょっと思い当たらないかも
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
顔グラ素材といえばやっぱscrap for elonaさんでしょ~
https://scrapiuna.blogspot.com/2012/12/blog-post_15.html
元のモングラがそこまで解像度高くないし方向ホコグラ作らなくていいからなんなら立ち絵生成して縮小してモングラ(冒険者用)作ったりもできるしな~
elonaは…実はzxcから全部操作はできたはずだし他はショトカと思ってじわじわ覚えていけばいいと思う
あと攻略ガンガン見てもいいゲームだと思う
手探りだとわからんすぎるw
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
美少女モンスター育成アクションRPG『アズールプロミリア』発表。『アズールレーン』開発元新作は、PS5含めたオープンワールドテイストのゲームに https://automaton-media.com/articles/newsjp/20240320-286660/
This account is not set to public on notestock.
This account is not set to public on notestock.
ちょっと前まで1人しかいなかったので…
RE: https://misskey.io/notes/9r364bf3or7b0456
This account is not set to public on notestock.
This account is not set to public on notestock.
げむすきのFFが2人しかいない(多分)ので偏っています
RE: https://misskey.io/notes/9r36347fe2kf02tz
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
運ゲーなので試行回数のためにも素早くマインスイーパーを解く能力が問われる!
たくさん死んでそのうち突破できるようになるためにうまくなるか
This account is not set to public on notestock.
This account is not set to public on notestock.
ADOFAI、激ムズ譜面とかやってないので逆にADOFAIできそうな曲を聞くとADOFAIできそうだなあと思うことができる
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
Logiart、むちゃくちゃ丁寧に解説ついててこんな初心者にやさしくて5x5とか10x10ばっかやってたら眠くなっちまうかもなとか言ってたらガンガンギア上げてきてひっくり返った
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
This account is not set to public on notestock.
のはテンプレート文字列っていうのはあんまりよくないか
テンプレートリテラルは非公式に「テンプレート文字列」と呼ばれることもありますが、文字列リテラルではないので、文字列リテラルが使えるところならばどこでも使えるわけではありません。また、タグ付けされたテンプレートリテラルが文字列になるとは限りません。https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Template_literals
ユーザー入力を変数hoge
に受け付けて
C:\
C:\User
C:\(hogeに指定された文字列)
の3行を出力するようなコードの文字列形成の一番楽な書き方は
rf"""C:\
C:\User
C:\{hoge}"""
$@"C:\
C:\User
C:\{hoge}"
String.raw`C:\
C:\User
C:\${hoge}`
は生文字列使うと
$"""
C:\
C:\User
C:\{hoge}
"""
かString InterpolationはString Interpolationなんだけどさ
"生文字列"に対する統一的な議論てないの(
エスケープ不要・見たまま書けるをするなら(A)+(B)になるのが感じで
がそこ分かれてるのがちょっと、のテンプレート文字列が多機能(ぶっちゃけちゃんと理解してない部分がある)感じ…?
ごめん(B)はString.raw
使わないとだったね
RE: https://misskey.io/notes/9r22jtzw5ipx064n
This account is not set to public on notestock.
一応ちゃんと確認してきたけど
は(A)/(B)/(C)全部別構文で"""
/r"
/f"
に対応してる
はテンプレート文字列で(A)(B)(C)全部できる
RE: https://misskey.io/notes/9r227sjg6x6x05kz