Skip to content

Commit

Permalink
병렬 처리 관련 버그 수정 #1
Browse files Browse the repository at this point in the history
  • Loading branch information
biud436 committed Apr 18, 2021
1 parent b782ee6 commit ec8a76c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion RS_InputExCallObjects.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
# Version Log
#-------------------------------------------------------------------------------
# 2020.01.29 (v1.0.0) - First Release.
# 2021.04.18 (v1.0.1) :
# - 옵션 설정에서 마우스 바깥 이벤트 감지인 OUT_EVENT_EMIT_ONCE를 false로 하면,
# 병렬 처리 이벤트에서 그림의 표시 이벤트가 있을 때
# 마우스 바깥의 좌표를 계속 체크하므로 캐릭터를 조절할 수 없는 문제가 생기게 되므로
# 설정을 true로 변경하였습니다.
# 이외에도 버그가 있는 걸로 보여집니다.
#===============================================================================
$imported = {} if $imported.nil?
$imported["RS_InputExCallObjects"] = true
Expand Down Expand Up @@ -63,7 +69,7 @@ module Pictures

# 스프라이트 마우스 아웃 이벤트를 한 번만 발생시키려면 true,
# 마우스가 바깥에 있어도 계속 발생시키려면 false
OUT_EVENT_EMIT_ONCE = false
OUT_EVENT_EMIT_ONCE = true

# 기본 클래스
BASE_CLASS = Sprite
Expand Down

0 comments on commit ec8a76c

Please sign in to comment.