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
| [/Script/ShooterGame.ShooterGameMode] | |
| bDisableStructurePlacementCollision=True | |
| bUseSingleplayerSettings=False | |
| EggHatchSpeedMultiplier=50.000000 | |
| BabyMatureSpeedMultiplier=100.000000 | |
| BabyCuddleIntervalMultiplier=0.0172 | |
| BabyImprintAmountMultiplier=1.25 | |
| BabyCuddleGracePeriodMultiplier=1.000000 | |
| BabyCuddleLoseImprintQualitySpeedMultiplier=1.000000 | |
| BabyImprintingStatScaleMultiplier=1.000000 |
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
| const fs = require('fs') | |
| const f = fs.readFileSync('./libertyday2021.txt', 'utf8') | |
| const lines = f.split('\n') | |
| lines.map(_ => _.trim()).forEach(line => { | |
| const cs = line.split(' ') | |
| .map(_ => Number('0b' + _)) | |
| .map(_ => _ ^ 0b11111111) // ビット反転 | |
| .map(c => { | |
| if (65 <= c && c <= 90) { | |
| // アルファベット大文字 |
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
| phina.globalize(); | |
| phina.define("MainScene", { | |
| superClass: "DisplayScene", | |
| init: function() { | |
| this.superInit(); | |
| }, | |
| update: function(app) { | |
| // 画面をクリックしたら効果音を再生 |
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
| tm.display.MapSprite.defineInstanceMethod("isHitPointTile", function(x, y, layer) { | |
| layer = layer || 0; | |
| var p = this.globalToLocal(tm.geom.Vector2(x, y)); | |
| var axisX = Math.floor((x / this.width) * this.mapSheet.width); | |
| var axisY = Math.floor((y / this.height) * this.mapSheet.height); | |
| if (axisX < 0 || this.mapSheet.width <= axisX || axisY < 0 || this.mapSheet.height <= axisY) { | |
| return false; | |
| } |
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 jp.dev7.simpletweet; | |
| import twitter4j.Twitter; | |
| import twitter4j.TwitterException; | |
| import twitter4j.TwitterFactory; | |
| import twitter4j.auth.RequestToken; | |
| import android.app.Activity; | |
| import android.content.Intent; | |
| import android.net.Uri; | |
| import android.os.AsyncTask; |
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 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
| <!-- http://www.nicovideo.jp/mylist/39031781 --> | |
| <html> | |
| <body> | |
| <canvas id="app"></canvas> | |
| <script src="https://rawgithub.com/phi-jp/tmlib.js/0.1.8/build/tmlib.min.js"></script> | |
| <script> | |
| var myship; | |
| var enemies; | |
| tm.main(function() { |
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
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; } | |
| body > *:first-child { |
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
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| include mime.types; | |
| default_type application/octet-stream; |
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
| Uncaught TypeError: Cannot set property 'open' of null bossdata.js:1345 | |
| bossAlgorithm.Goriate bossdata.js:1345 | |
| Class.create.onenterframe enemy.js:369 | |
| enchant.EventTarget.enchant.Class.create.dispatchEvent enchant.js:755 | |
| enchant.Core.enchant.Class.create._tick enchant.js:1319 | |
| (anonymous function) |
NewerOlder