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
| /*: | |
| * | |
| * @plugindesc 게임을 렌더링하는 캔버스의 DOM을 가져와 css translate를 통해 화면을 흔들리게 하는 스크립트입니다. | |
| * @author Creta Park (Park Jong-Hyeok) (creta5164@gmail.com, http://creffect.com/?me=cretapark) | |
| * | |
| * @param 흔들림_강도.가볍게 | |
| * @desc '흔들림_강도.가볍게'의 흔들림의 기본값을 정합니다. | |
| * @default 2.5,45,0 | |
| * | |
| * @param 흔들림_강도.일반 |
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
| /*: | |
| * | |
| * @plugindesc body 태그의 스타일을 통해 배경 이미지를 지정합니다. | |
| * @author Creta Park (http://creffect.com/?me=cretapark) | |
| * | |
| * @param 기본 경로 | |
| * @desc 사진을 선택할 기본 최상위 경로 | |
| * @default img/pictures | |
| * | |
| * @param 기본 파일 확장 |
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
| //전처리 지시를 해야 합니다, | |
| #ifdef GL_OES_standard_derivatives | |
| #extension GL_OES_standard_derivatives : enable | |
| // code that requires the extension | |
| #else | |
| // alternative code | |
| #endif | |
| varying vec2 v_vTexcoord; | |
| varying vec4 v_vColour; |
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
| ///////////////////////////////////////////////////////////////////////// | |
| // Vector4 by Creta (creta5164@gmail.com) | |
| ///////////////////////////////////////////////////////////////////////// | |
| package | |
| { | |
| public class Vector4 | |
| { | |
| public var x:Number, y:Number, z:Number, w:Number; | |
| ///<summary> |
NewerOlder