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 TM.Network; | |
| public class GetWild | |
| { | |
| // Start is called before the first frame update | |
| void Start() | |
| { | |
| //アスファルト タイヤを切りつけながら | |
| while(GetAsphalt().Cut(tire)) | |
| { |
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
| ;; 引数を load-path へ追加 | |
| ;; normal-top-level-add-subdirs-to-load-path はディレクトリ中の中で | |
| ;; [A-Za-z] で開始する物だけ追加するので、追加したくない物は . や _ を先頭に付与しておけばロードしない | |
| ;; dolist は Emacs 21 から標準関数なので積極的に利用して良い | |
| (defun add-to-load-path (&rest paths) | |
| (let (path) | |
| (dolist (path paths paths) | |
| (let ((default-directory (expand-file-name (concat user-emacs-directory path)))) | |
| (add-to-list 'load-path default-directory) | |
| (if (fboundp 'normal-top-level-add-subdirs-to-load-path) |
OlderNewer




