mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Added yet another fine tuning of camera movement in the level editor.
This commit is contained in:
parent
cc04626a5a
commit
e504932e5e
2 changed files with 3 additions and 1 deletions
app
|
@ -298,7 +298,7 @@ module.exports = class LankBoss extends CocoClass
|
|||
return if e and (@disabled or @selectLocked) # Ignore clicks for selection/panning/wizard movement while disabled or select is locked
|
||||
worldPos = lank?.thang?.pos
|
||||
worldPos ?= @camera.screenToWorld {x: e.originalEvent.rawX, y: e.originalEvent.rawY} if e?.originalEvent
|
||||
if worldPos and (@options.navigateToSelection or not lank or treemaThangSelected) and e?.originalEvent?.nativeEvent?.which isnt 3
|
||||
if (not @reallyStopMoving) and worldPos and (@options.navigateToSelection or not lank or treemaThangSelected) and e?.originalEvent?.nativeEvent?.which isnt 3
|
||||
@camera.zoomTo(lank?.sprite or @camera.worldToSurface(worldPos), @camera.zoom, 1000, true)
|
||||
lank = null if @options.choosing # Don't select lanks while choosing
|
||||
if lank isnt @selectedLank
|
||||
|
|
|
@ -359,6 +359,7 @@ module.exports = class ThangsTabView extends CocoView
|
|||
@surface.lankBoss.removeLank @addThangLank if @addThangLank
|
||||
@addThangType = type
|
||||
if @addThangType
|
||||
@surface.lankBoss.reallyStopMoving = true
|
||||
thang = @createAddThang()
|
||||
@addThangLank = @surface.lankBoss.addThangToLanks thang, @surface.lankBoss.layerAdapters['Floating']
|
||||
@addThangLank.notOfThisWorld = true
|
||||
|
@ -368,6 +369,7 @@ module.exports = class ThangsTabView extends CocoView
|
|||
@adjustThangPos @addThangLank, thang, pos
|
||||
else
|
||||
@addThangLank = null
|
||||
@surface.lankBoss.reallyStopMoving = false
|
||||
|
||||
createEssentialComponents: (defaultComponents) ->
|
||||
physicalConfig = {pos: {x: 10, y: 10, z: 1}}
|
||||
|
|
Loading…
Add table
Reference in a new issue