'전체 글'에 해당되는 글 1811건

  1. 2011.09.05 Robotlegs Modular Exam 1
  2. 2011.09.02 [Fault] exception, information=VerifyError: Error #1053
  3. 2011.09.02 as3isolib for beginner
  4. 2011.09.01 AABB, OBB 충돌검사방법?
  5. 2011.09.01 archive-as3-code-lib
  6. 2011.08.31 Robotlegs has different types of injection

Robotlegs Modular Exam 1

Adobe Flash 2011. 9. 5. 01:14
반응형
반응형

'Adobe Flash' 카테고리의 다른 글

as3isolib collision 해결  (0) 2011.09.05
as3isolib collision / depth problems  (0) 2011.09.05
as3isolib for beginner  (0) 2011.09.02
archive-as3-code-lib  (0) 2011.09.01
Robotlegs has different types of injection  (0) 2011.08.31
:

[Fault] exception, information=VerifyError: Error #1053

Adobe Flash/Error Note 2011. 9. 2. 18:26
반응형

반응형
:

as3isolib for beginner

Adobe Flash 2011. 9. 2. 00:24
반응형

Flash CS5 (사실 버젼과 상관없긴 하지만 FP10이상에서 제작하는것을 권장한다)
FlashDevelop (다른 통합 개발툴을 사용해도 무관하다. FD는 무료라는것에 있어 굉장한 메리트가있다. )
다운로드 링크: http://www.flashdevelop.org/community/viewtopic.php?f=11&t=8622
FlexSDK 4.0 (현재 4.5까지 나왔지만 이글은 4.0을 기본으로 작성할것이다.)
다운로드 링크: http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK

as3isolib.v1.core.swc
다운로드링크: http://code.google.com/p/as3isolib/
robotlegs-framework-v1.4.0.swc
SwiftSuspenders-v1.5.1.swc
다운로드링크: http://www.robotlegs.org/
greensock.swc
다운로드링크: http://www.greensock.com/tweenlite/

API Docs 
as3: http://help.adobe.com/ko_KR/AS3LCR/Flash_10.0/
as3isolib: http://as3isolib.googlecode.com/svn/trunk/fp10/asdoc/index.html
robotlegs: http://api.robotlegs.org/
greensock: http://www.greensock.com/as/docs/tween/


반응형

'Adobe Flash' 카테고리의 다른 글

as3isolib collision / depth problems  (0) 2011.09.05
Robotlegs Modular Exam 1  (0) 2011.09.05
archive-as3-code-lib  (0) 2011.09.01
Robotlegs has different types of injection  (0) 2011.08.31
flash ref site links  (0) 2011.08.31
:

AABB, OBB 충돌검사방법?

카테고리 없음 2011. 9. 1. 17:55
반응형
반응형
:

archive-as3-code-lib

Adobe Flash 2011. 9. 1. 12:25
반응형
반응형

'Adobe Flash' 카테고리의 다른 글

Robotlegs Modular Exam 1  (0) 2011.09.05
as3isolib for beginner  (0) 2011.09.02
Robotlegs has different types of injection  (0) 2011.08.31
flash ref site links  (0) 2011.08.31
as3isolib tutorial 1,2  (0) 2011.08.31
:

Robotlegs has different types of injection

Adobe Flash 2011. 8. 31. 10:55
반응형

ActionScript Developer's Guide to Robotlegs p.27 

안전적으로 의존적 관계를 맺는가에 대한 룰이 바로 injection mapping이다
A에 대해 클래스가 요청할때 A를 주는것에 대해 말하는것과 같이 더이상 복잡한것이 아니다.

Robotlegs는 어떻게 요청에 대해 응답하는거에 대한 아래와 같은 4가지 룰을 제공한다.

1. mapClass(SomeType, TypeA)
SomeType은 TypeA의 인스턴스로 요청한다.
이떄 TypeA는 요청받을때마다 새로운 인스턴스가 된다.
(클래스 자체가 아닌 클래스의 인스턴스를 넘겨 받게 되는것이다.) 

2. mapSingleton(SomeType)
SomeType은 SomeType의 인스턴스를 요청한다.

3. mapSingletonOf(SomeType, TypeA)
SomeType은 TypeA의 인스턴스로 요청한다. (각각의 같은 인스턴스를 사용한다)

4. mapValue(SomeType, new TypeA()) 
SomeType은 제공된 TypeA의 인스터스로  요청한다.(각각 같은 인스턴스를 사용한다)
 
#다소 오역이 있을수 있습니다.  
반응형

'Adobe Flash' 카테고리의 다른 글

as3isolib for beginner  (0) 2011.09.02
archive-as3-code-lib  (0) 2011.09.01
flash ref site links  (0) 2011.08.31
as3isolib tutorial 1,2  (0) 2011.08.31
네트워킹 및 통신 (소켓)  (0) 2011.08.30
: