Welcome,
Guest
. Please
login
or
register
.
June 14, 2026, 02:17:02 AM
Home
Help
Search
Login
Register
Tasharen Entertainment Forum
»
Support
»
NGUI 3 Support
»
[UICamera] is this a bug? (ProcessOthers)
« previous
next »
Print
Pages: [
1
]
Author
Topic: [UICamera] is this a bug? (ProcessOthers) (Read 7920 times)
gyd
Jr. Member
Thank You
-Given: 2
-Receive: 0
Posts: 87
[UICamera] is this a bug? (ProcessOthers)
«
on:
September 13, 2016, 10:07:58 AM »
UICamera.cs
line 2225
if
(
!
useMouse
&&
(
key
>=
KeyCode
.
Mouse0
||
key
<=
KeyCode
.
Mouse6
)
)
continue
;
KeyCode.Mouse0 = 323
KeyCode.Mouse6 = 329
(key >= KeyCode.Mouse0 || key <= KeyCode.Mouse6) will always be true
(!useMouse && (key >= KeyCode.Mouse0 || key <= KeyCode.Mouse6)) will always be true when useMouse is false
i think it should be this one
if
(
!
useMouse
&&
(
key
>=
KeyCode
.
Mouse0
&&
key
<=
KeyCode
.
Mouse6
)
)
continue
;
Logged
ArenMook
Administrator
Hero Member
Thank You
-Given: 337
-Receive: 1171
Posts: 22,128
Toronto, Canada
Re: [UICamera] is this a bug? (ProcessOthers)
«
Reply #1 on:
September 13, 2016, 11:16:15 AM »
It's already like that in NGUI. What version are you on?
Logged
gyd
Jr. Member
Thank You
-Given: 2
-Receive: 0
Posts: 87
Re: [UICamera] is this a bug? (ProcessOthers)
«
Reply #2 on:
September 13, 2016, 01:58:58 PM »
i think it's 3.9.9
and i checked the changelog of 3.10/3.10.1, i didnt see the log, maybe it's missed?
Logged
Print
Pages: [
1
]
« previous
next »
Tasharen Entertainment Forum
»
Support
»
NGUI 3 Support
»
[UICamera] is this a bug? (ProcessOthers)