Last active
September 1, 2020 18:11
-
-
Save mnewt/20339c243dba4a5138c1354e3a0c78fa to your computer and use it in GitHub Desktop.
GDScript warnings example
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
| [Trace - 03:27:31 PM] Sending request 'textDocument/documentLink - (346)'. | |
| Params: { | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| } | |
| [Trace - 03:27:31 PM] Received response 'textDocument/documentLink - (346)' in 41ms. | |
| Result: [] | |
| [Trace - 03:27:34 PM] Sending request 'textDocument/hover - (347)'. | |
| Params: { | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| }, | |
| "position": { | |
| "line": 12, | |
| "character": 4 | |
| } | |
| } | |
| [Trace - 03:27:34 PM] Sending notification 'textDocument/didChange'. | |
| Params: { | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd", | |
| "version": 366 | |
| }, | |
| "contentChanges": [ | |
| { | |
| "text": "extends KinematicBody2D\n\nvar velocity = Vector2.ZERO\n\nfunc _physics_process(delta):\n\tmove_and_collide(\n\t\tdelta * 60 *\n\t\tVector2(\n\t\t\tInput.get_action_strength(\"ui_right\") - Input.get_action_strength(\"ui_left\"),\n\t\t\tInput.get_action_strength(\"ui_down\") - Input.get_action_strength(\"ui_up\")))\n\nfunc _ready():\n\tsdf\n\t" | |
| } | |
| ] | |
| } | |
| [Trace - 03:27:34 PM] Received notification 'textDocument/publishDiagnostics'. | |
| Params: { | |
| "diagnostics": [ | |
| { | |
| "code": -1, | |
| "message": "The identifier \"sdf\" isn't declared in the current scope.", | |
| "range": { | |
| "end": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "start": { | |
| "character": 1, | |
| "line": 12 | |
| } | |
| }, | |
| "severity": 1, | |
| "source": "gdscript" | |
| }, | |
| { | |
| "code": 16, | |
| "message": "The function 'move_and_collide()' returns a value, but this value is never used.", | |
| "range": { | |
| "end": { | |
| "character": 18, | |
| "line": 5 | |
| }, | |
| "start": { | |
| "character": 1, | |
| "line": 5 | |
| } | |
| }, | |
| "severity": 2, | |
| "source": "gdscript" | |
| }, | |
| { | |
| "code": 7, | |
| "message": "Standalone expression (the line has no effect).", | |
| "range": { | |
| "end": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "start": { | |
| "character": 1, | |
| "line": 12 | |
| } | |
| }, | |
| "severity": 2, | |
| "source": "gdscript" | |
| } | |
| ], | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| [Trace - 03:27:34 PM] Received response 'textDocument/hover - (347)' in 94ms. | |
| Result: { | |
| "contents": [] | |
| } | |
| [Trace - 03:27:34 PM] Sending request 'textDocument/completion - (348)'. | |
| Params: { | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| }, | |
| "position": { | |
| "line": 12, | |
| "character": 4 | |
| }, | |
| "context": { | |
| "triggerKind": 1 | |
| } | |
| } | |
| [Trace - 03:27:34 PM] Sending request 'textDocument/documentLink - (349)'. | |
| Params: { | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| } | |
| [Trace - 03:27:34 PM] Received response 'textDocument/completion - (348)' in 116ms. | |
| Result: [ | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AABB" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVRAnchor" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVRCamera" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVRController" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVRInterface" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVRInterfaceGDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVROrigin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVRPositionalTracker" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ARVRServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AStar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AStar2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AcceptDialog" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimatedSprite" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimatedSprite3D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimatedTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Animation" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeAdd2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeAdd3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeAnimation" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeBlend2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeBlend3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeBlendSpace1D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeBlendSpace2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeBlendTree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeOneShot" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeOutput" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeStateMachine" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeStateMachinePlayback" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeStateMachineTransition" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeTimeScale" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeTimeSeek" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationNodeTransition" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationPlayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationRootNode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationTrackEditPlugin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationTree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AnimationTreePlayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Area" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Area2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Array" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ArrayMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AtlasTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioBusLayout" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectAmplify" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectBandLimitFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectBandPassFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectChorus" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectCompressor" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectDelay" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectDistortion" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectEQ" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectEQ10" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectEQ21" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectEQ6" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectHighPassFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectHighShelfFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectLimiter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectLowPassFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectLowShelfFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectNotchFilter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectPanner" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectPhaser" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectPitchShift" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectRecord" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectReverb" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectSpectrumAnalyzer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectSpectrumAnalyzerInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioEffectStereoEnhance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStream" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamGenerator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamGeneratorPlayback" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamMicrophone" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamOGGVorbis" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamPlayback" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamPlaybackResampled" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamPlayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamPlayer2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamPlayer3D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamRandomPitch" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "AudioStreamSample" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "BLEND_MODE_ADD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "BLEND_MODE_DISABLED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "BLEND_MODE_MIX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "BLEND_MODE_MUL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "BLEND_MODE_PREMULT_ALPHA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "BLEND_MODE_SUB" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_MASK_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_MASK_MIDDLE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_MASK_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_MASK_XBUTTON1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_MASK_XBUTTON2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_MIDDLE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_WHEEL_DOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_WHEEL_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_WHEEL_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_WHEEL_UP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_XBUTTON1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BUTTON_XBUTTON2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BackBufferCopy" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BakedLightmap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BakedLightmapData" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BaseButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Basis" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BitMap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BitmapFont" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Bone2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BoneAttachment" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BoxContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BoxShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BulletPhysicsDirectBodyState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "BulletPhysicsServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Button" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ButtonGroup" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "CONNECT_DEFERRED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "CONNECT_ONESHOT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "CONNECT_PERSIST" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "CONNECT_REFERENCE_COUNTED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CORNER_BOTTOM_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CORNER_BOTTOM_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CORNER_TOP_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CORNER_TOP_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CPUParticles" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CPUParticles2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGBox" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGCombiner" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGCylinder" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGPolygon" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGPrimitive" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGSphere" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CSGTorus" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Camera" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Camera2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CameraFeed" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CameraServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CameraTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CanvasItem" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CanvasItemMaterial" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CanvasLayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CanvasModulate" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CapsuleMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CapsuleShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CapsuleShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CenterContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CharFXTransform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CheckBox" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CheckButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CircleShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ClassDB" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ClippedCamera" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CollisionObject" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CollisionObject2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CollisionPolygon" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CollisionPolygon2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CollisionShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CollisionShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Color" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "Color8" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "ColorN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ColorPicker" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ColorPickerButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ColorRect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ConcavePolygonShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ConcavePolygonShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ConeTwistJoint" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ConfigFile" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ConfirmationDialog" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Container" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Control" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ConvexPolygonShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ConvexPolygonShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Crypto" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CryptoKey" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CubeMap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CubeMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Curve" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Curve2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Curve3D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CurveTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CylinderMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "CylinderShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "DTLSServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "DUPLICATE_GROUPS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "DUPLICATE_SCRIPTS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "DUPLICATE_SIGNALS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "DUPLICATE_USE_INSTANCING" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "DampedSpringJoint2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Dictionary" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "DirectionalLight" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Directory" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "DynamicFont" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "DynamicFontData" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_ALREADY_EXISTS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_ALREADY_IN_USE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_BUG" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_BUSY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CANT_ACQUIRE_RESOURCE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CANT_CONNECT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CANT_CREATE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CANT_FORK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CANT_OPEN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CANT_RESOLVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_COMPILATION_FAILED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CONNECTION_ERROR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_CYCLIC_LINK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_DATABASE_CANT_READ" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_DATABASE_CANT_WRITE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_DOES_NOT_EXIST" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_DUPLICATE_SYMBOL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_ALREADY_IN_USE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_BAD_DRIVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_BAD_PATH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_CANT_OPEN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_CANT_READ" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_CANT_WRITE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_CORRUPT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_EOF" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_MISSING_DEPENDENCIES" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_NOT_FOUND" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_NO_PERMISSION" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_FILE_UNRECOGNIZED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_HELP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_INVALID_DATA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_INVALID_DECLARATION" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_INVALID_PARAMETER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_LINK_FAILED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_LOCKED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_METHOD_NOT_FOUND" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_OUT_OF_MEMORY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_PARAMETER_RANGE_ERROR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_PARSE_ERROR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_PRINTER_ON_FIRE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_QUERY_FAILED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_SCRIPT_FAILED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_SKIP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_TIMEOUT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_UNAUTHORIZED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_UNAVAILABLE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ERR_UNCONFIGURED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorExportPlugin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorFeatureProfile" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorFileDialog" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorFileSystem" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorFileSystemDirectory" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorImportPlugin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorInspector" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorInspectorPlugin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorInterface" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorNavigationMeshGenerator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorPlugin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorProperty" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorResourceConversionPlugin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorResourcePreview" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorResourcePreviewGenerator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorSceneImporter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorSceneImporterAssimp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorScenePostImport" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorScript" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorSelection" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorSettings" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorSpatialGizmo" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorSpatialGizmoPlugin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorSpinSlider" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EditorVCSInterface" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "EncodedObjectAsID" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Engine" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Environment" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Expression" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ExternalTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "FAILED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "File" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "FileDialog" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "FileSystemDock" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Font" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "FuncRef" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GDNativeLibrary" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GDScript" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GDScriptFunctionState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GIProbe" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GIProbeData" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Generic6DOFJoint" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Geometry" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GeometryInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Gradient" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GradientTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GraphEdit" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GraphNode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GridContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GridMap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "GrooveJoint2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HALIGN_CENTER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HALIGN_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HALIGN_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HBoxContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HORIZONTAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HScrollBar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HSeparator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HSlider" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HSplitContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HTTPClient" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HTTPRequest" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HashingContext" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HeightMapShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "HingeJoint" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "INF" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "IP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "IP_Unix" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Image" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ImageTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ImmediateGeometry" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Input" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputDefault" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEvent" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventAction" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventGesture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventJoypadButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventJoypadMotion" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventKey" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventMIDI" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventMagnifyGesture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventMouse" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventMouseButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventMouseMotion" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventPanGesture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventScreenDrag" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventScreenTouch" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputEventWithModifiers" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InputMap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InstancePlaceholder" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "InterpolatedCamera" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ItemList" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JNISingleton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_ANALOG_L2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_ANALOG_LX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_ANALOG_LY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_ANALOG_R2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_ANALOG_RX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_ANALOG_RY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_0" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_4" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_5" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_6" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_7" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_8" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_9" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_AXIS_MAX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_0" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_10" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_11" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_12" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_13" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_14" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_15" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_4" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_5" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_6" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_7" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_8" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_9" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_BUTTON_MAX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DPAD_DOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DPAD_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DPAD_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DPAD_UP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DS_A" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DS_B" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DS_X" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_DS_Y" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_L" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_L2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_L3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_OCULUS_AX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_OCULUS_BY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_OCULUS_MENU" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_OPENVR_MENU" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_OPENVR_TOUCHPADX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_OPENVR_TOUCHPADY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_R" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_R2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_R3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_SELECT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_SONY_CIRCLE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_SONY_SQUARE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_SONY_TRIANGLE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_SONY_X" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_START" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_VR_ANALOG_GRIP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_VR_ANALOG_TRIGGER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_VR_GRIP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_VR_PAD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_VR_TRIGGER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_XBOX_A" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_XBOX_B" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_XBOX_X" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JOY_XBOX_Y" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JSON" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JSONParseResult" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JSONRPC" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JavaClass" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JavaClassWrapper" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "JavaScript" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Joint" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Joint2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_0" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_4" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_5" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_6" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_7" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_8" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_9" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_A" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_AACUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ACIRCUMFLEX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ACUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ADIAERESIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_AE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_AGRAVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ALT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_AMPERSAND" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_APOSTROPHE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ARING" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ASCIICIRCUM" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ASCIITILDE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ASTERISK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_AT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ATILDE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_B" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BACK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BACKSLASH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BACKSPACE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BACKTAB" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BAR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BASSBOOST" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BASSDOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BASSUP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BRACELEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BRACERIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BRACKETLEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BRACKETRIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_BROKENBAR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_C" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CAPSLOCK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CCEDILLA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CEDILLA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CENT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CLEAR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CODE_MASK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_COLON" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_COMMA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CONTROL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_COPYRIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_CURRENCY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DEGREE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DELETE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DIAERESIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DIRECTION_L" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DIRECTION_R" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DIVISION" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DOLLAR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_DOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_E" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_EACUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ECIRCUMFLEX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_EDIAERESIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_EGRAVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_END" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ENTER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_EQUAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ESCAPE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ETH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_EXCLAM" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_EXCLAMDOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F10" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F11" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F12" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F13" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F14" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F15" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F16" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F4" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F5" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F6" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F7" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F8" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_F9" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_FAVORITES" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_FORWARD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_G" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_GREATER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_GUILLEMOTLEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_GUILLEMOTRIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_H" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_HELP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_HOME" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_HOMEPAGE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_HYPER_L" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_HYPER_R" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_HYPHEN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_I" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_IACUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ICIRCUMFLEX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_IDIAERESIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_IGRAVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_INSERT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_J" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_K" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_0" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_4" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_5" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_6" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_7" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_8" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_9" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_ADD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_DIVIDE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_ENTER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_MULTIPLY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_PERIOD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_KP_SUBTRACT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_L" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH0" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH1" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH4" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH5" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH6" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH7" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH8" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCH9" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHB" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHC" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHF" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHMAIL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LAUNCHMEDIA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_LESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_M" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MACRON" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASCULINE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASK_ALT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASK_CMD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASK_CTRL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASK_GROUP_SWITCH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASK_KPAD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASK_META" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MASK_SHIFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MEDIANEXT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MEDIAPLAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MEDIAPREVIOUS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MEDIARECORD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MEDIASTOP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MENU" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_META" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MINUS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MODIFIER_MASK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MU" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_MULTIPLY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_N" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_NOBREAKSPACE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_NOTSIGN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_NTILDE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_NUMBERSIGN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_NUMLOCK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_O" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_OACUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_OCIRCUMFLEX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ODIAERESIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_OGRAVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ONEHALF" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ONEQUARTER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ONESUPERIOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_OOBLIQUE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_OPENURL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_ORDFEMININE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_OTILDE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_P" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PAGEDOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PAGEUP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PARAGRAPH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PARENLEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PARENRIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PAUSE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PERCENT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PERIOD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PERIODCENTERED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PLUS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PLUSMINUS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_PRINT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_Q" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_QUESTION" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_QUESTIONDOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_QUOTEDBL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_QUOTELEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_R" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_REFRESH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_REGISTERED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_S" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SCROLLLOCK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SEARCH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SECTION" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SEMICOLON" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SHIFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SLASH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SPACE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SSHARP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_STANDBY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_STERLING" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_STOP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SUPER_L" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SUPER_R" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_SYSREQ" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_T" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_TAB" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_THORN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_THREEQUARTERS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_THREESUPERIOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_TREBLEDOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_TREBLEUP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_TWOSUPERIOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_U" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_UACUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_UCIRCUMFLEX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_UDIAERESIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_UGRAVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_UNDERSCORE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_UNKNOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_UP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_V" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_VOLUMEDOWN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_VOLUMEMUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_VOLUMEUP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_W" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_X" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_Y" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_YACUTE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_YDIAERESIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_YEN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KEY_Z" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KinematicBody" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KinematicBody2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KinematicCollision" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "KinematicCollision2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Label" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "LargeTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Light" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Light2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "LightOccluder2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Line2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "LineEdit" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "LineShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "LinkButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Listener" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MARGIN_BOTTOM" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MARGIN_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MARGIN_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MARGIN_TOP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAGS_DEFAULT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAG_CONST" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAG_EDITOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAG_FROM_SCRIPT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAG_NORMAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAG_NOSCRIPT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAG_REVERSE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "METHOD_FLAG_VIRTUAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MIDI_MESSAGE_AFTERTOUCH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MIDI_MESSAGE_CHANNEL_PRESSURE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MIDI_MESSAGE_CONTROL_CHANGE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MIDI_MESSAGE_NOTE_OFF" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MIDI_MESSAGE_NOTE_ON" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MIDI_MESSAGE_PITCH_BEND" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MIDI_MESSAGE_PROGRAM_CHANGE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MainLoop" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MarginContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Marshalls" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Material" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MenuButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Mesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MeshDataTool" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MeshInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MeshInstance2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MeshLibrary" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MeshTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MobileVRInterface" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MultiMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MultiMeshInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MultiMeshInstance2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MultiplayerAPI" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "MultiplayerPeerGDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Mutex" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NAN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_APP_PAUSED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_APP_RESUMED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_CRASH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_DRAG_BEGIN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_DRAG_END" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_DRAW" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_ENTER_CANVAS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_ENTER_TREE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_EXIT_CANVAS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_EXIT_TREE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_INSTANCED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_INTERNAL_PHYSICS_PROCESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_INTERNAL_PROCESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_MOVED_IN_PARENT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_OS_IME_UPDATE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_OS_MEMORY_WARNING" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_PARENTED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_PATH_CHANGED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_PAUSED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_PHYSICS_PROCESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_POSTINITIALIZE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_PREDELETE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_PROCESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_READY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_TRANSFORM_CHANGED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_TRANSLATION_CHANGED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_UNPARENTED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_UNPAUSED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_VISIBILITY_CHANGED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_ABOUT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_FOCUS_IN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_FOCUS_OUT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_GO_BACK_REQUEST" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_MOUSE_ENTER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_MOUSE_EXIT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_QUIT_REQUEST" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "NOTIFICATION_WM_UNFOCUS_REQUEST" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NativeScript" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Navigation" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Navigation2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NavigationMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NavigationMeshGenerator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NavigationMeshInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NavigationPolygon" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NavigationPolygonInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NetworkedMultiplayerENet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NetworkedMultiplayerPeer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NinePatchRect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Node" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Node2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NodePath" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "NoiseTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_ADD" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_AND" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_BIT_AND" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_BIT_NEGATE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_BIT_OR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_BIT_XOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_DIVIDE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_EQUAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_GREATER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_GREATER_EQUAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_IN" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_LESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_LESS_EQUAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_MAX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_MODULE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_MULTIPLY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_NEGATE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_NOT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_NOT_EQUAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_OR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_POSITIVE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_SHIFT_LEFT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_SHIFT_RIGHT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_STRING_CONCAT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_SUBTRACT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OP_XOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Object" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OccluderPolygon2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OmniLight" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OpenSimplexNoise" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "OptionButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "PAUSE_MODE_INHERIT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "PAUSE_MODE_PROCESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 21, | |
| "label": "PAUSE_MODE_STOP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PCKPacker" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PHashTranslation" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PI" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_COLOR_NO_ALPHA" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_DIR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_ENUM" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_EXP_EASING" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_EXP_RANGE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_FILE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_FLAGS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_GLOBAL_DIR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_GLOBAL_FILE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_IMAGE_COMPRESS_LOSSLESS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_IMAGE_COMPRESS_LOSSY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_KEY_ACCEL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_LAYERS_2D_PHYSICS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_LAYERS_2D_RENDER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_LAYERS_3D_PHYSICS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_LAYERS_3D_RENDER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_LENGTH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_MULTILINE_TEXT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_NONE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_PLACEHOLDER_TEXT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_RANGE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_HINT_RESOURCE_TYPE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_CATEGORY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_CHECKABLE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_CHECKED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_DEFAULT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_DEFAULT_INTL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_EDITOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_EDITOR_HELPER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_GROUP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_INTERNATIONALIZED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_NETWORK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_NOEDITOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_NO_INSTANCE_STATE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_RESTART_IF_CHANGED" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_SCRIPT_VARIABLE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PROPERTY_USAGE_STORAGE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PackedDataContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PackedDataContainerRef" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PackedScene" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PacketPeer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PacketPeerDTLS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PacketPeerGDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PacketPeerStream" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PacketPeerUDP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Panel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PanelContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PanoramaSky" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ParallaxBackground" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ParallaxLayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Particles" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Particles2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ParticlesMaterial" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Path" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Path2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PathFollow" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PathFollow2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Performance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicalBone" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DDirectBodyState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DDirectBodyStateSW" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DDirectSpaceState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DServerSW" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DShapeQueryParameters" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DShapeQueryResult" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Physics2DTestMotionResult" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsBody" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsBody2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsDirectBodyState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsDirectSpaceState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsMaterial" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsShapeQueryParameters" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PhysicsShapeQueryResult" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PinJoint" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PinJoint2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Plane" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PlaneMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PlaneShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PluginScript" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PointMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Polygon2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PolygonPathFinder" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PoolByteArray" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PoolColorArray" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PoolIntArray" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PoolRealArray" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PoolStringArray" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PoolVector2Array" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PoolVector3Array" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Popup" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PopupDialog" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PopupMenu" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PopupPanel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Position2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Position3D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PrimitiveMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "PrismMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ProceduralSky" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ProgressBar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ProjectSettings" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ProximityGroup" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ProxyTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "QuadMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Quat" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RID" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RandomNumberGenerator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Range" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RayCast" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RayCast2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RayShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RayShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Rect2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RectangleShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Reference" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ReferenceRect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ReflectionProbe" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RegEx" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RegExMatch" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RemoteTransform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RemoteTransform2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Resource" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourceFormatLoader" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourceFormatSaver" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourceImporter" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourceImporterOGGVorbis" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourceInteractiveLoader" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourceLoader" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourcePreloader" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ResourceSaver" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RichTextEffect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RichTextLabel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RigidBody" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RigidBody2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "RootMotionView" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SPKEY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SceneState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SceneTree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SceneTreeTimer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Script" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ScriptCreateDialog" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ScriptEditor" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ScrollBar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ScrollContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SegmentShape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Semaphore" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Separator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Shader" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ShaderMaterial" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Shape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Shape2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ShortCut" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Skeleton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Skeleton2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SkeletonIK" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Skin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SkinReference" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Sky" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Slider" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SliderJoint" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SoftBody" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Spatial" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpatialGizmo" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpatialMaterial" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpatialVelocityTracker" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SphereMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SphereShape" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpinBox" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SplitContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpotLight" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpringArm" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Sprite" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Sprite3D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpriteBase3D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SpriteFrames" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StaticBody" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StaticBody2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StreamPeer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StreamPeerBuffer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StreamPeerGDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StreamPeerSSL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StreamPeerTCP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StreamTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "String" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StyleBox" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StyleBoxEmpty" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StyleBoxFlat" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StyleBoxLine" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "StyleBoxTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "SurfaceTool" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TAU" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TCP_Server" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_AABB" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_BASIS" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_BOOL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_COLOR" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_COLOR_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_DICTIONARY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_INT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_INT_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_MAX" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_NIL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_NODE_PATH" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_OBJECT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_PLANE" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_QUAT" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_RAW_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_REAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_REAL_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_RECT2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_RID" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_STRING" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_STRING_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_TRANSFORM" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_TRANSFORM2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_VECTOR2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_VECTOR2_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_VECTOR3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TYPE_VECTOR3_ARRAY" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TabContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Tabs" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TextEdit" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TextFile" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Texture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Texture3D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TextureArray" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TextureButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TextureLayered" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TextureProgress" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TextureRect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Theme" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Thread" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TileMap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TileSet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Timer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ToolButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TouchScreenButton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Transform2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Translation" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TranslationServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Tree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TreeItem" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "TriangleMesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Tween" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "UDPServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "UPNP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "UPNPDevice" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "UndoRedo" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VALIGN_BOTTOM" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VALIGN_CENTER" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VALIGN_TOP" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VBoxContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VERTICAL" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VScrollBar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VSeparator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VSlider" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VSplitContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Vector2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Vector3" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VehicleBody" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VehicleWheel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VideoPlayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VideoStream" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VideoStreamGDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VideoStreamTheora" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VideoStreamWebm" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "Viewport" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ViewportContainer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "ViewportTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisibilityEnabler" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisibilityEnabler2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisibilityNotifier" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisibilityNotifier2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualInstance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScript" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptBasicTypeConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptBuiltinFunc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptClassConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptComment" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptComposeArray" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptCondition" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptConstructor" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptCustomNode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptDeconstruct" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptEditor" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptEmitSignal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptEngineSingleton" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptExpression" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptFunction" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptFunctionCall" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptFunctionState" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptGlobalConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptIndexGet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptIndexSet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptInputAction" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptIterator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptLists" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptLocalVar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptLocalVarSet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptMathConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptNode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptOperator" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptPreload" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptPropertyGet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptPropertySet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptResourcePath" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptReturn" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptSceneNode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptSceneTree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptSelect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptSelf" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptSequence" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptSubCall" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptSwitch" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptTypeCast" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptVariableGet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptVariableSet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptWhile" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptYield" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualScriptYieldSignal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShader" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeBooleanConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeBooleanUniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeColorConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeColorFunc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeColorOp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeColorUniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeCompare" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeCubeMap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeCubeMapUniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeCustom" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeDeterminant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeDotProduct" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeExpression" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeFaceForward" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeFresnel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeGlobalExpression" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeGroupBase" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeIf" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeInput" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeIs" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeOuterProduct" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeOutput" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarClamp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarDerivativeFunc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarFunc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarInterp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarOp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarSmoothStep" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarSwitch" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeScalarUniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeSwitch" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTexture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTextureUniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTextureUniformTriplanar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTransformCompose" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTransformConstant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTransformDecompose" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTransformFunc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTransformMult" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTransformUniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeTransformVecMult" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeUniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVec3Constant" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVec3Uniform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorClamp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorCompose" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorDecompose" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorDerivativeFunc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorDistance" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorFunc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorInterp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorLen" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorOp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorRefract" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorScalarMix" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorScalarSmoothStep" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorScalarStep" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "VisualShaderNodeVectorSmoothStep" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WeakRef" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebRTCDataChannel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebRTCDataChannelGDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebRTCMultiplayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebRTCPeerConnection" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebRTCPeerConnectionGDNative" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebSocketClient" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebSocketMultiplayerPeer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebSocketPeer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WebSocketServer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WindowDialog" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "World" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "World2D" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "WorldEnvironment" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "X509Certificate" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "XMLParser" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "YSort" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "_import_path" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "_physics_process" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "_ready" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "abs" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "acos" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "add_child" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "add_child_below_node" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "add_collision_exception_with" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "add_to_group" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "add_user_signal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "and" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "apply_scale" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "as" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "asin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "assert" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "atan" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "atan2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "bool" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "break" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "breakpoint" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "bytes2var" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "call" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "call_deferred" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "callv" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "can_process" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "can_translate_messages" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "cartesian2polar" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "ceil" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "char" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "clamp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "class" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "collision_layer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "collision_mask" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "connect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "const" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "continue" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "convert" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "cos" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "cosh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "create_shape_owner" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "custom_multiplayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "db2linear" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "decimals" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "dectime" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "deg2rad" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "dict2inst" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "disconnect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_arc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_char" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_circle" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_colored_polygon" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_line" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_mesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_multiline" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_multiline_colors" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_multimesh" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_polygon" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_polyline" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_polyline_colors" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_primitive" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_rect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_set_transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_set_transform_matrix" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_string" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_style_box" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_texture" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_texture_rect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "draw_texture_rect_region" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "duplicate" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "ease" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "editor_description" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "elif" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "else" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "emit_signal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "enum" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "exp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "export" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "extends" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "false" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "filename" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "find_node" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "find_parent" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "float" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "floor" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "fmod" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "for" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "force_update_transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "fposmod" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "free" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "func" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "funcref" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_angle_to" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_canvas" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_canvas_item" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_canvas_transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_child" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_child_count" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_children" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_class" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_collision_exceptions" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_collision_layer_bit" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_collision_mask_bit" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_floor_normal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_floor_velocity" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_global_mouse_position" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_global_transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_global_transform_with_canvas" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_groups" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_incoming_connections" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_index" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_indexed" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_instance_id" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_local_mouse_position" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_meta" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_meta_list" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_method_list" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_network_master" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_node" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_node_and_resource" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_node_or_null" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_parent" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_path" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_path_to" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_physics_process_delta_time" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_position_in_parent" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_process_delta_time" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_property_list" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_relative_transform_to_parent" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_rid" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_scene_instance_load_placeholder" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_script" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_shape_owner_one_way_collision_margin" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_shape_owners" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_signal_connection_list" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_signal_list" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_slide_collision" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_slide_count" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_stack" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_tree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_viewport" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_viewport_rect" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_viewport_transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "get_world_2d" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "global_position" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "global_rotation" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "global_rotation_degrees" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "global_scale" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "global_transform" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "global_translate" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "has_meta" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "has_method" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "has_node" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "has_node_and_resource" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "has_signal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "has_user_signal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "hash" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "hide" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "if" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "in" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "input_pickable" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "inst2dict" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "instance_from_id" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "int" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "inverse_lerp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "is" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_a_parent_of" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_blocking_signals" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_class" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_connected" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_displayed_folded" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_equal_approx" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_greater_than" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_in_group" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_inf" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_inside_tree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_instance_valid" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_local_transform_notification_enabled" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_nan" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_network_master" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_on_ceiling" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_on_floor" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_on_wall" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_physics_processing" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_physics_processing_internal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_processing" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_processing_input" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_processing_internal" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_processing_unhandled_input" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_processing_unhandled_key_input" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_queued_for_deletion" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_set_as_toplevel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_shape_owner_disabled" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_shape_owner_one_way_collision_enabled" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_transform_notification_enabled" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_visible_in_tree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "is_zero_approx" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "layers" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "len" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "lerp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "lerp_angle" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "light_mask" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "linear2db" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "load" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "log" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "look_at" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "make_canvas_position_local" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "make_input_local" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "master" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "mastersync" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "match" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "material" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "max" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "min" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "modulate" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "move_and_collide" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "move_and_slide" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "move_and_slide_with_snap" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "move_child" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "move_local_x" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "move_local_y" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "move_toward" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "multiplayer" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "name" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "nearest_po2" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "not" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "notification" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 7, | |
| "label": "null" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "onready" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "or" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "ord" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "owner" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "parse_json" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "pass" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "pause_mode" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "polar2cartesian" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "position" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "posmod" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "pow" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "preload" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "print" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "print_debug" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "print_stack" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "print_stray_nodes" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "print_tree" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "print_tree_pretty" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "printerr" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "printraw" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "prints" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "printt" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "process_priority" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "propagate_call" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "propagate_notification" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "property_list_changed_notify" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "puppet" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "puppetsync" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "push_error" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "push_warning" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "queue_free" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rad2deg" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "raise" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rand_range" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rand_seed" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "randf" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "randi" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "randomize" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "range" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "range_lerp" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "remote" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "remotesync" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "remove_and_skip" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "remove_child" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "remove_collision_exception_with" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "remove_from_group" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "remove_meta" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "remove_shape_owner" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "replace_by" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "request_ready" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "return" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rotate" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "rotation" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "rotation_degrees" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "round" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rpc" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rpc_config" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rpc_id" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rpc_unreliable" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rpc_unreliable_id" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rset" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rset_config" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rset_id" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rset_unreliable" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "rset_unreliable_id" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "scale" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "seed" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 1, | |
| "label": "self" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 10, | |
| "label": "self_modulate" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "set" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "set_as_toplevel" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "set_block_signals" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "set_collision_layer_bit" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "set_collision_mask_bit" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { | |
| "uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
| } | |
| }, | |
| "kind": 2, | |
| "label": "set_deferred" | |
| }, | |
| { | |
| "data": { | |
| "position": { | |
| "character": 4, | |
| "line": 12 | |
| }, | |
| "textDocument": { |