├── .gitignore ├── LICENSE ├── README.md ├── en ├── api │ ├── README.md │ ├── SUMMARY.md │ ├── action │ │ ├── Action.md │ │ ├── actionDef.md │ │ ├── image │ │ │ └── actionDef.png │ │ └── setData.md │ ├── assets │ │ ├── AssetUtil.md │ │ ├── Assets.md │ │ ├── Atlas.md │ │ ├── ExcelAsset.md │ │ ├── ExcelHashSheetIndex.md │ │ ├── ExcelSheet.md │ │ ├── ExcelSheet_addHashIndex.md │ │ ├── ExcelSheet_addSortIndex.md │ │ ├── ExcelSheet_find.md │ │ ├── ExcelSheet_findLast.md │ │ ├── ExcelSheet_getIndex.md │ │ ├── ExcelSheet_getPrimary.md │ │ ├── ExcelSheet_matches.md │ │ ├── ExcelSheet_parseColumnToData.md │ │ ├── ExcelSortSheetIndex.md │ │ ├── ExcelSortSheetIndex_first.md │ │ ├── ExcelSortSheetIndex_last.md │ │ ├── ExcelSortSheetIndex_matches.md │ │ ├── Font.md │ │ ├── Prefab.md │ │ ├── Prefab_hasUnloadedDependence.md │ │ ├── README.md │ │ ├── SoundAsset.md │ │ ├── TextAsset.md │ │ ├── Texture.md │ │ ├── atlas_getFrame.md │ │ ├── atlas_getPadding.md │ │ ├── atlas_getTexture.md │ │ ├── clear.md │ │ ├── excel_findSheet.md │ │ ├── excel_parseToDate.md │ │ ├── find.md │ │ ├── get.md │ │ ├── getXHR.md │ │ ├── load.md │ │ ├── loadBatch.md │ │ ├── loadTexture.md │ │ ├── post.md │ │ └── unload.md │ ├── behaviour │ │ ├── Behaviour.md │ │ ├── addListener.md │ │ └── destroy.md │ ├── book.json │ ├── color │ │ ├── README.md │ │ ├── toNumber.md │ │ └── toString.md │ ├── components │ │ ├── Animator.md │ │ ├── Animator_getAction.md │ │ ├── Animator_play.md │ │ ├── Animator_stop.md │ │ ├── AspectRatioFitter.md │ │ ├── Bounds.md │ │ ├── CacheAsBitmap.md │ │ ├── DebugView.md │ │ ├── FilterGroup.md │ │ ├── HorizontalLayout.md │ │ ├── HorizontalLayout_getCellLayout.md │ │ ├── LayoutElement.md │ │ ├── NodeMask.md │ │ ├── README.md │ │ ├── ScaleAdapter.md │ │ ├── TableLayout.md │ │ ├── ToggleGroup.md │ │ ├── TransitionBehaviour.md │ │ ├── Tween.md │ │ ├── TweenAlpha.md │ │ ├── TweenColor.md │ │ ├── TweenPosition.md │ │ ├── TweenProperty.md │ │ ├── TweenRotation.md │ │ ├── TweenScale.md │ │ ├── TweenTransform.md │ │ ├── VerticalLayout.md │ │ ├── VerticalLayout_getCellLayout.md │ │ ├── bounds_getBounds.md │ │ ├── bounds_getBox.md │ │ ├── layoutelement_getLayoutElement.md │ │ ├── tablelayout_clearCellStyle.md │ │ ├── tablelayout_getCellLayout.md │ │ ├── tablelayout_getCellRect.md │ │ ├── tablelayout_getCellStyle.md │ │ ├── tablelayout_relayout.md │ │ └── tablelayout_setCellStyle.md │ ├── debug │ │ └── README.md │ ├── device │ │ └── README.md │ ├── filter │ │ └── README.md │ ├── game │ │ ├── README.md │ │ └── shutdown.md │ ├── gameobject │ │ ├── CButton.md │ │ ├── CDom.md │ │ ├── CDropdown.md │ │ ├── CInputField.md │ │ ├── CNode.md │ │ ├── CObjectLayer.md │ │ ├── CProgressBar.md │ │ ├── CScrollBar.md │ │ ├── CScrollView.md │ │ ├── CSlider.md │ │ ├── CSound.md │ │ ├── CSprite.md │ │ ├── CTileLayer.md │ │ ├── CTilemap.md │ │ ├── CToggle.md │ │ ├── CUIImage.md │ │ ├── CUIRoot.md │ │ ├── CUIText.md │ │ ├── GameObjectFactory.md │ │ ├── README.md │ │ ├── addListener.md │ │ ├── addListenerOnce.md │ │ ├── button.md │ │ ├── clone.md │ │ ├── dom.md │ │ ├── dropdown.md │ │ ├── dropdown_addOptions.md │ │ ├── dropdown_clearOptions.md │ │ ├── dropdown_hide.md │ │ ├── dropdown_show.md │ │ ├── emitter.md │ │ ├── emitter_explode.md │ │ ├── emitter_flow.md │ │ ├── emitter_kill.md │ │ ├── emitter_rebuild.md │ │ ├── emitter_revive.md │ │ ├── emitter_setAlpha.md │ │ ├── emitter_setScale.md │ │ ├── emitter_start.md │ │ ├── image.md │ │ ├── image_imageType.md │ │ ├── image_resetNativeSize.md │ │ ├── images │ │ │ └── imageExample.png │ │ ├── inputField.md │ │ ├── node.md │ │ ├── node_addChild.md │ │ ├── node_addChildAt.md │ │ ├── node_addScript.md │ │ ├── node_destroy.md │ │ ├── node_destroyImmediately.md │ │ ├── node_find.md │ │ ├── node_getBoxIn.md │ │ ├── node_getChildAt.md │ │ ├── node_getChildIndex.md │ │ ├── node_getScript.md │ │ ├── node_getScripts.md │ │ ├── node_getWorldBox.md │ │ ├── node_getWorldCorners.md │ │ ├── node_getWorldPosition.md │ │ ├── node_getWorldRotation.md │ │ ├── node_getWorldScale.md │ │ ├── node_getWorldSkew.md │ │ ├── node_isDescendantOf.md │ │ ├── node_rectContains.md │ │ ├── node_removeChild.md │ │ ├── node_removeChildAt.md │ │ ├── node_removeChildren.md │ │ ├── node_setAnchor.md │ │ ├── node_setChildIndex.md │ │ ├── node_setStretch.md │ │ ├── node_setTransformToWorld.md │ │ ├── node_snapshotAsAtlas.md │ │ ├── node_snapshotAsImage.md │ │ ├── node_swapChildren.md │ │ ├── node_switchParent.md │ │ ├── node_toGlobal.md │ │ ├── node_toLocal.md │ │ ├── objectLayer.md │ │ ├── progressBar.md │ │ ├── progressbar_setCircleAngle.md │ │ ├── progressbar_setCircleScope.md │ │ ├── progressbar_setMinMax.md │ │ ├── removeListener.md │ │ ├── scrollBar.md │ │ ├── scrollView.md │ │ ├── slider.md │ │ ├── sound.md │ │ ├── sound_addMarker.md │ │ ├── sound_fadeIn.md │ │ ├── sound_pause.md │ │ ├── sound_play.md │ │ ├── sound_removeMarker.md │ │ ├── sound_resume.md │ │ ├── sound_stop.md │ │ ├── sprite.md │ │ ├── sprite_getAnimationInfo.md │ │ ├── sprite_playAnimation.md │ │ ├── sprite_resetNativeSize.md │ │ ├── sprite_stop.md │ │ ├── sv_setNormalizedPosition.md │ │ ├── text.md │ │ ├── tileLayer.md │ │ ├── tilelayer_getTile.md │ │ ├── tilelayer_getTileIndex.md │ │ ├── tilemap.md │ │ ├── tilemap_generateLayers.md │ │ ├── tilemap_getLayerByIndex.md │ │ ├── tilemap_getLayerByName.md │ │ ├── tilemap_getTilePosition.md │ │ ├── tilemap_resetNativeSize.md │ │ └── toggle.md │ ├── geom │ │ ├── BezierCurve.md │ │ ├── Circle.md │ │ ├── Ellipse.md │ │ ├── Line.md │ │ ├── Matrix.md │ │ ├── Point.md │ │ ├── Polygon.md │ │ ├── README.md │ │ └── Rectangle.md │ ├── gs │ │ ├── README.md │ │ ├── connect.md │ │ ├── disconnect.md │ │ ├── registerCmd.md │ │ └── sendMessage.md │ ├── input │ │ ├── BaseInputEvent.md │ │ ├── BaseInputModule.md │ │ ├── CursorMoveEvent.md │ │ ├── DragEndEvent.md │ │ ├── DragEvent.md │ │ ├── DragStartEvent.md │ │ ├── DropEvent.md │ │ ├── Input.md │ │ ├── Input_getPointer.md │ │ ├── Input_hasCursor.md │ │ ├── Input_isAltDown.md │ │ ├── Input_isAnyKey.md │ │ ├── Input_isAnyKeyDown.md │ │ ├── Input_isAnyMouse.md │ │ ├── Input_isAnyMouseDown.md │ │ ├── Input_isAnyPointer.md │ │ ├── Input_isAnyPointerStart.md │ │ ├── Input_isAnyTouch.md │ │ ├── Input_isAnyTouchStart.md │ │ ├── Input_isControlDown.md │ │ ├── Input_isKeyDown.md │ │ ├── Input_isMetaDown.md │ │ ├── Input_isMouse.md │ │ ├── Input_isMouseDown.md │ │ ├── Input_isPointerStart.md │ │ ├── Input_isShiftDown.md │ │ ├── Input_isTouchStart.md │ │ ├── Key.md │ │ ├── Key_checkRepeat.md │ │ ├── Key_setState.md │ │ ├── Keyboard.md │ │ ├── Keyboard_isAnyKey.md │ │ ├── Keyboard_isAnyKeyDown.md │ │ ├── Keyboard_isKeyDown.md │ │ ├── Mouse.md │ │ ├── Mouse_getMouseById.md │ │ ├── Mouse_isAnyMouse.md │ │ ├── Mouse_isAnyMouseDown.md │ │ ├── Mouse_isMouseDown.md │ │ ├── Pointer.md │ │ ├── PointerEvent.md │ │ ├── README.md │ │ ├── Touch.md │ │ ├── Touch_getTouchByDeviceId.md │ │ ├── Touch_getTouchById.md │ │ ├── Touch_isAnyTouch.md │ │ ├── Touch_isAnyTouchStart.md │ │ ├── Touch_isTouchStart.md │ │ ├── WheelEvent.md │ │ └── cursorPosistion.md │ ├── log │ │ ├── README.md │ │ ├── error.md │ │ ├── important.md │ │ └── trace.md │ ├── math │ │ ├── README.md │ │ ├── angleBetween.md │ │ ├── angleBetweenY.md │ │ ├── average.md │ │ ├── ceilTo.md │ │ ├── clamp.md │ │ ├── degToRad.md │ │ ├── distance.md │ │ ├── factorial.md │ │ ├── floorTo.md │ │ ├── fuzzyCeil.md │ │ ├── fuzzyEqual.md │ │ ├── fuzzyFloor.md │ │ ├── fuzzyGreaterThan.md │ │ ├── fuzzyLessThan.md │ │ ├── getRandom.md │ │ ├── id.md │ │ ├── invert.md │ │ ├── isEven.md │ │ ├── isOdd.md │ │ ├── linear.md │ │ ├── max.md │ │ ├── maxAdd.md │ │ ├── min.md │ │ ├── minSub.md │ │ ├── multiply.md │ │ ├── normalizeAngle.md │ │ ├── radToDeg.md │ │ ├── random.md │ │ ├── reverseAngle.md │ │ ├── roundTo.md │ │ ├── shear.md │ │ ├── shuffle.md │ │ ├── sign.md │ │ ├── smoothDamp.md │ │ ├── snapTo.md │ │ ├── snapToCeil.md │ │ ├── snapToFloor.md │ │ ├── uuid.md │ │ ├── within.md │ │ ├── wrap.md │ │ ├── wrapAngle.md │ │ └── wrapValue.md │ ├── nodepool │ │ ├── README.md │ │ ├── add.md │ │ ├── find.md │ │ └── remove.md │ ├── officialplugins │ │ ├── README.md │ │ ├── arcade │ │ │ ├── RigidBody.md │ │ │ └── rigidbody │ │ │ │ ├── accelerateToObject.md │ │ │ │ ├── addCollide.md │ │ │ │ ├── addOverlap.md │ │ │ │ ├── angleBetween.md │ │ │ │ ├── distanceBetween.md │ │ │ │ ├── moveToObject.md │ │ │ │ ├── removeCollide.md │ │ │ │ ├── removeOverlap.md │ │ │ │ ├── reset.md │ │ │ │ ├── velocityFromAngle.md │ │ │ │ └── velocityFromRotation.md │ │ └── particleSystem │ │ │ ├── CParticleSystem.md │ │ │ └── methods │ │ │ ├── clear.md │ │ │ ├── pause.md │ │ │ ├── reset.md │ │ │ └── start.md │ ├── plugin │ │ ├── README.md │ │ ├── add.md │ │ ├── remove.md │ │ └── removeAll.md │ ├── serializer │ │ └── README.md │ ├── signal │ │ ├── README.md │ │ ├── add.md │ │ ├── addOnce.md │ │ ├── dispatch.md │ │ ├── has.md │ │ ├── remove.md │ │ └── removeAll.md │ ├── signalbinding │ │ └── README.md │ ├── soundmanager │ │ └── README.md │ ├── stage │ │ ├── README.md │ │ ├── destroy.md │ │ └── updateTransform.md │ ├── state │ │ ├── README.md │ │ ├── download.md │ │ └── load.md │ ├── storage │ │ ├── README.md │ │ ├── del.md │ │ ├── get.md │ │ ├── restore.md │ │ ├── save.md │ │ └── set.md │ ├── time │ │ └── README.md │ ├── timer │ │ ├── README.md │ │ ├── add.md │ │ ├── loop.md │ │ └── remove.md │ ├── togglegroup │ │ ├── add.md │ │ └── remove.md │ ├── transition │ │ └── README.md │ ├── tween │ │ ├── playForward.md │ │ ├── playGroupForward.md │ │ ├── playGroupReverse.md │ │ ├── playReverse.md │ │ ├── reset.md │ │ ├── resetGroup.md │ │ ├── resetGroupToBeginning.md │ │ ├── resetToBeginning.md │ │ ├── stop.md │ │ └── stopGroup.md │ ├── uistate │ │ └── README.md │ ├── util │ │ ├── README.md │ │ ├── clone.md │ │ ├── findClass.md │ │ ├── isArray.md │ │ └── removeHTML.md │ └── world │ │ └── README.md └── manual │ ├── Action │ ├── ActionEditor.md │ ├── ActionManager.md │ ├── Animator.md │ ├── README.md │ └── image │ │ ├── action.png │ │ ├── actionFile.png │ │ ├── actionList.png │ │ ├── actionView.png │ │ ├── addAction.png │ │ ├── addProperty.png │ │ ├── amFile.png │ │ ├── amInfo.png │ │ ├── amNode.png │ │ ├── amPreview.png │ │ ├── amTimeline.png │ │ ├── animator.png │ │ ├── blueKeys.png │ │ ├── buttons.png │ │ ├── curveEditor.png │ │ ├── curvePanel.png │ │ ├── customProperty.png │ │ ├── eventLine.png │ │ ├── eventPanel.png │ │ ├── frameView.png │ │ ├── loopAction.png │ │ ├── preview.png │ │ ├── propertyList.png │ │ ├── propertymenu.png │ │ ├── record.png │ │ ├── relative.png │ │ ├── texture.png │ │ ├── timeline.png │ │ ├── tweenAbsolute.png │ │ ├── tweenRelative.png │ │ └── valueField.png │ ├── AssetsLoad │ ├── README.md │ └── images │ │ ├── ref_font.png │ │ ├── ref_image.png │ │ ├── ref_prefab_excel_text.png │ │ ├── ref_sound.png │ │ └── ref_sprite.png │ ├── Atlas │ ├── README.md │ └── images │ │ ├── add.jpeg │ │ ├── atlas.jpeg │ │ ├── atlas_folder.jpeg │ │ └── repack.png │ ├── Behaviour │ ├── CallSeq.md │ ├── README.md │ └── images │ │ ├── ab.png │ │ ├── disabled.png │ │ └── result.png │ ├── BitmapFont │ ├── README.md │ └── images │ │ ├── code.png │ │ ├── font.png │ │ ├── images.png │ │ ├── options.png │ │ ├── settings.png │ │ └── unicode.png │ ├── BuildinComponents │ ├── CacheAsBitmap.md │ ├── DebugViewer.md │ ├── NodeMask.md │ ├── README.md │ ├── TransitionBehaviour.md │ └── images │ │ ├── bounds_all.png │ │ ├── bounds_self.png │ │ ├── cacheForScreen.png │ │ ├── cacheForSelf.png │ │ ├── debug_inspector.png │ │ ├── debug_viewer.png │ │ ├── mask.png │ │ ├── mask1.png │ │ ├── mask2.png │ │ ├── transitionColorTintResult.png │ │ ├── transitionColorTintSetting.png │ │ ├── transitionFrameResult.png │ │ └── transitionFrameSetting.png │ ├── ComponentMenu │ ├── README.md │ └── images │ │ └── 1.png │ ├── Debug │ ├── README.md │ └── images │ │ ├── chrome.png │ │ ├── console1.png │ │ ├── console2.png │ │ ├── console3.png │ │ ├── console4.png │ │ ├── console5.png │ │ ├── console6.png │ │ ├── debug2.png │ │ └── debug3.png │ ├── DirtyRectangles │ ├── README.md │ └── images │ │ └── dirtyrectangles.png │ ├── DragonBone │ ├── README.md │ └── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── i1.png │ │ ├── i2.png │ │ └── i3.png │ ├── Excel │ ├── README.md │ └── images │ │ ├── excel1.jpeg │ │ ├── excel2.jpeg │ │ └── excel3.jpeg │ ├── ExtendEditor │ ├── Component.md │ ├── Inspector.md │ ├── Layout.md │ ├── Menu.md │ ├── README.md │ └── images │ │ ├── angleInput.png │ │ ├── button.png │ │ ├── buttonGroup.png │ │ ├── checkBox.png │ │ ├── colorPicker.png │ │ ├── colorPicker1.png │ │ ├── columnWidths.png │ │ ├── divider.png │ │ ├── dropDownList.png │ │ ├── dropDownList1.png │ │ ├── inspector.png │ │ ├── intInput.png │ │ ├── label.png │ │ ├── line.png │ │ ├── menu.jpeg │ │ ├── multiDropDownList.png │ │ ├── numberInput.png │ │ ├── objectInput.png │ │ ├── sliderInput.png │ │ ├── stringInput.png │ │ ├── text.png │ │ ├── text1.png │ │ ├── textArea.png │ │ ├── titleLineCollapsed.png │ │ └── titleLineExpanded.png │ ├── Filter │ ├── README.md │ └── images │ │ ├── addfilters.png │ │ ├── alphamask1.png │ │ ├── alphamask2.png │ │ ├── blend1.png │ │ ├── blend2.png │ │ ├── blurx1.png │ │ ├── blurx2.png │ │ ├── blury1.png │ │ ├── blury2.png │ │ ├── filtergroup.png │ │ ├── gray1.png │ │ ├── gray2.png │ │ ├── highlight1.png │ │ ├── highlight2.png │ │ ├── keepsource1.png │ │ └── keepsource2.png │ ├── FrameAnimation │ ├── README.md │ └── images │ │ ├── atlas.png │ │ └── frame.png │ ├── Input │ ├── README.md │ └── images │ │ ├── input1.png │ │ ├── input2.png │ │ └── input3.png │ ├── Interface │ ├── Hierarchy.md │ ├── Inspector.md │ ├── MainMenu.md │ ├── Project.md │ ├── README.md │ ├── Scene.md │ ├── ToolBar.md │ └── images │ │ ├── above.png │ │ ├── button.png │ │ ├── child.png │ │ ├── dom.png │ │ ├── emitter.png │ │ ├── grid.png │ │ ├── hierarchy.jpeg │ │ ├── hierarchy.png │ │ ├── image.png │ │ ├── inputfield.png │ │ ├── inspector.jpeg │ │ ├── interface.png │ │ ├── iphone.png │ │ ├── list.png │ │ ├── main_menu.png │ │ ├── move.jpeg │ │ ├── node.png │ │ ├── progressbar.png │ │ ├── project.png │ │ ├── run.png │ │ ├── scale.jpeg │ │ ├── scene.png │ │ ├── scrollbar.png │ │ ├── scrollview.png │ │ ├── size.jpeg │ │ ├── slider.png │ │ ├── sound.png │ │ ├── sprite.png │ │ ├── text.png │ │ ├── tilemap.png │ │ ├── toggle.png │ │ ├── toolbar.png │ │ ├── transform.png │ │ └── under.png │ ├── LoadingPrefab │ ├── README.md │ ├── images │ │ ├── background.png │ │ ├── clue.png │ │ ├── loading.png │ │ ├── loadingPrefab.png │ │ ├── nextState.png │ │ ├── progress.png │ │ ├── svg.png │ │ └── tweenAlpha.png │ ├── loading.md │ └── loadingPrefab.md │ ├── NinePatch │ ├── README.md │ └── images │ │ └── button.png │ ├── Overview │ ├── Install.md │ ├── MacInstall.md │ ├── WindowsInstall.md │ └── images │ │ ├── macDownload.png │ │ ├── port.png │ │ ├── project.png │ │ ├── start.jpeg │ │ ├── startMac.png │ │ └── windowsDownload.png │ ├── Plugin │ ├── Arcade.md │ ├── LockOrientation.md │ ├── Official.md │ ├── ParticleSystem │ │ ├── ParticleSystem.md │ │ └── images │ │ │ ├── add_particle_system.png │ │ │ ├── enable_plugin.png │ │ │ ├── inspector_alpha_module.png │ │ │ ├── inspector_angular_velocity_module.png │ │ │ ├── inspector_color_module.png │ │ │ ├── inspector_frame_animation_module.png │ │ │ ├── inspector_main_module.png │ │ │ ├── inspector_scale_module.png │ │ │ └── inspector_velocity_module.png │ ├── README.md │ ├── ServerCommunicate.md │ ├── WechatShare.md │ ├── images │ │ ├── add.png │ │ ├── import_arcade.png │ │ ├── import_lock_orientation.png │ │ ├── inspector_lock_orientation.png │ │ ├── origin_ui.png │ │ ├── rigidbody.png │ │ ├── serverComm.png │ │ ├── with_lock_orientation.png │ │ └── without_lock_orientation.png │ ├── plugin.md │ ├── server.md │ └── server.zip │ ├── Prefab │ ├── README.md │ └── images │ │ ├── alt.png │ │ ├── ani.png │ │ ├── apply.png │ │ ├── background.png │ │ ├── edit.png │ │ ├── save.png │ │ └── text.png │ ├── Project │ ├── README.md │ └── images │ │ ├── create1.jpeg │ │ ├── create2.jpeg │ │ ├── create3.jpeg │ │ ├── open.jpeg │ │ └── switch.jpeg │ ├── Publish │ ├── README.md │ └── images │ │ └── publish.png │ ├── README.md │ ├── SUMMARY.md │ ├── Sample │ ├── AspectRatioFitter.md │ ├── AxisLayout.md │ ├── Button.md │ ├── Dom.md │ ├── Dropdown.md │ ├── Graphics.md │ ├── InputField.md │ ├── LayoutComponents.md │ ├── Node.md │ ├── ProgressBar.md │ ├── ScrollView.md │ ├── Slider.md │ ├── Sprite.md │ ├── TableLayout.md │ ├── Tilemap.md │ ├── Toggle.md │ ├── UIImage.md │ ├── UIRoot.md │ ├── UIText.md │ └── images │ │ ├── aspectRatioExample.png │ │ ├── button1.png │ │ ├── button2.png │ │ ├── button3.png │ │ ├── dom.png │ │ ├── dropdown1.png │ │ ├── dropdown2.png │ │ ├── dropdown3.png │ │ ├── inputfield1.png │ │ ├── inputfield2.png │ │ ├── layout_RealBounds.gif │ │ ├── layout_RectTransform.gif │ │ ├── layout_ignore_x.gif │ │ ├── layout_ignore_y.gif │ │ ├── layout_ll_hor.png │ │ ├── layout_ll_ver.png │ │ ├── layout_lr_hor.png │ │ ├── layout_lr_ver.png │ │ ├── layout_rectTransform_bounds.png │ │ ├── layout_resize_100.png │ │ ├── layout_ul_hor.png │ │ ├── layout_ul_ver.png │ │ ├── layout_ur_hor.png │ │ ├── layout_ur_ver.png │ │ ├── layout_wrap_100.png │ │ ├── node_1.png │ │ ├── node_2.png │ │ ├── node_3.png │ │ ├── node_4.png │ │ ├── node_5.png │ │ ├── node_6.png │ │ ├── node_7.png │ │ ├── node_8.png │ │ ├── objectlayer_inspector.png │ │ ├── progressbar1.png │ │ ├── progressbar2.png │ │ ├── progressbar3.png │ │ ├── progressbar4.png │ │ ├── progressbar5.png │ │ ├── scroll1.png │ │ ├── scroll2.png │ │ ├── scroll3.png │ │ ├── scroll4.png │ │ ├── slider1.png │ │ ├── slider2.png │ │ ├── sprite1.jpeg │ │ ├── sprite2.png │ │ ├── sprite_0.png │ │ ├── sprite_1.png │ │ ├── sprite_2.png │ │ ├── sprite_3.png │ │ ├── sprite_4.png │ │ ├── text1.png │ │ ├── text2.png │ │ ├── text3.png │ │ ├── text4.png │ │ ├── text5.png │ │ ├── text6.png │ │ ├── tiled.png │ │ ├── tiledmap_format.png │ │ ├── tiledmap_saveas.png │ │ ├── tiledmap_scroll.png │ │ ├── tilelayer_inspector.png │ │ ├── tilemap.png │ │ ├── tilemap_inspector.png │ │ ├── toggle1.png │ │ ├── toggle2.png │ │ ├── toggle3.png │ │ ├── toggle4.png │ │ ├── uiimage1.png │ │ ├── uiimage2.png │ │ ├── uiimage3.png │ │ ├── uiimage4.png │ │ ├── uiimage5.png │ │ └── uiimage6.png │ ├── Scene │ └── README.md │ ├── Scripts │ ├── README.md │ └── images │ │ └── drag.png │ ├── Serializer │ ├── README.md │ └── images │ │ ├── addcomponent.png │ │ ├── inspector1.png │ │ └── inspector2.png │ ├── Settings │ ├── README.md │ └── images │ │ ├── dnd.png │ │ └── settings.png │ ├── Sound │ ├── README.md │ └── images │ │ └── sound.png │ ├── Storage │ └── README.md │ ├── Svn │ └── README.md │ ├── Time │ └── README.md │ ├── Tween │ ├── README.md │ └── images │ │ ├── curvelist.png │ │ ├── curvesave.png │ │ ├── tween.png │ │ ├── tweenFunc.png │ │ ├── tweenFuncAdd.png │ │ ├── tweencolor.png │ │ ├── tweendom.png │ │ ├── tweengroup.png │ │ ├── tweenkey.png │ │ └── tweenscale.png │ ├── TypeScript │ ├── README.md │ └── images │ │ └── init.jpeg │ ├── UI │ ├── AdapterResolution.md │ ├── BasicLayout.md │ ├── README.md │ ├── Sample.md │ └── images │ │ ├── anchor_center.gif │ │ ├── anchor_corner.gif │ │ ├── anchor_pos.gif │ │ ├── anchor_presets.png │ │ ├── anchor_stretch.gif │ │ ├── anchoredx.png │ │ ├── anchoredxy.png │ │ ├── anchoredy.png │ │ ├── move.png │ │ ├── pivot.png │ │ ├── position.png │ │ ├── preset_button.jpeg │ │ ├── rect.png │ │ ├── rect_tool.png │ │ ├── rect_transform_inspector.png │ │ ├── rect_transform_scene.png │ │ ├── rotate.png │ │ ├── rotation.png │ │ ├── scale.png │ │ ├── scale_adapter.png │ │ ├── scale_adapter_expand.png │ │ ├── scale_adapter_fill.png │ │ ├── scale_adapter_height.png │ │ ├── scale_adapter_none.png │ │ ├── scale_adapter_sample.png │ │ ├── scale_adapter_shrink.png │ │ ├── scale_adapter_width.png │ │ ├── size.png │ │ ├── transform.png │ │ ├── ui.png │ │ └── xywh.png │ ├── WebFont │ ├── README.md │ └── images │ │ ├── font.png │ │ ├── oper.png │ │ └── webfont.png │ ├── book.json │ ├── images │ ├── preview.png │ └── techstack.png │ └── video │ ├── add_atlas.mp4 │ ├── add_script_to_node.mp4 │ ├── add_state.mp4 │ ├── change_settings.mp4 │ ├── create_frame_animation.mp4 │ ├── create_new_scene.mp4 │ ├── create_prefab.mp4 │ ├── create_project.mp4 │ ├── drag_node_in_hierachy.mp4 │ ├── heartPath.mp4 │ ├── import_dragonbone1.mp4 │ ├── import_dragonbone2.mp4 │ ├── open_project.mp4 │ ├── oper_button.mp4 │ ├── oper_dom.mp4 │ ├── oper_graphics.mp4 │ ├── oper_move_node.mp4 │ ├── oper_node.mp4 │ ├── oper_scale_node.mp4 │ ├── oper_scrollview.mp4 │ ├── oper_size_node.mp4 │ ├── oper_uiimage.mp4 │ ├── plugin_arcade.mp4 │ ├── sampled_dragonbone.mp4 │ ├── set_nine_patch.mp4 │ ├── set_scripts_dep.mp4 │ ├── switch_project.mp4 │ ├── switch_state.mp4 │ └── tilemap.mp4 ├── index.html ├── package.json ├── utils └── extract.js └── zh ├── api ├── README.md ├── SUMMARY.md ├── action │ ├── Action.md │ ├── actionDef.md │ ├── image │ │ └── actionDef.png │ └── setData.md ├── assets │ ├── AssetUtil.md │ ├── Assets.md │ ├── Atlas.md │ ├── ExcelAsset.md │ ├── ExcelHashSheetIndex.md │ ├── ExcelSheet.md │ ├── ExcelSheet_addHashIndex.md │ ├── ExcelSheet_addSortIndex.md │ ├── ExcelSheet_find.md │ ├── ExcelSheet_findLast.md │ ├── ExcelSheet_getIndex.md │ ├── ExcelSheet_getPrimary.md │ ├── ExcelSheet_matches.md │ ├── ExcelSheet_parseColumnToData.md │ ├── ExcelSortSheetIndex.md │ ├── ExcelSortSheetIndex_first.md │ ├── ExcelSortSheetIndex_last.md │ ├── ExcelSortSheetIndex_matches.md │ ├── Font.md │ ├── Prefab.md │ ├── README.md │ ├── SoundAsset.md │ ├── TextAsset.md │ ├── Texture.md │ ├── atlas_getFrame.md │ ├── atlas_getPadding.md │ ├── atlas_getTexture.md │ ├── clear.md │ ├── createAtlasFromCanvas.md │ ├── excel_findSheet.md │ ├── excel_parseToDate.md │ ├── find.md │ ├── get.md │ ├── getXHR.md │ ├── load.md │ ├── loadBatch.md │ ├── loadTexture.md │ ├── post.md │ ├── unload.md │ └── updateWxResMd5.md ├── behaviour │ ├── Behaviour.md │ ├── addListener.md │ └── destroy.md ├── book.json ├── camera │ └── README.md ├── color │ ├── README.md │ ├── toNumber.md │ └── toString.md ├── components │ ├── Animator.md │ ├── Animator_getAction.md │ ├── Animator_play.md │ ├── Animator_stop.md │ ├── AspectRatioFitter.md │ ├── Bounds.md │ ├── CacheAsBitmap.md │ ├── DebugView.md │ ├── FilterGroup.md │ ├── HorizontalLayout.md │ ├── HorizontalLayout_getCellLayout.md │ ├── LayoutElement.md │ ├── NodeMask.md │ ├── README.md │ ├── ScaleAdapter.md │ ├── TableLayout.md │ ├── ToggleGroup.md │ ├── TransitionBehaviour.md │ ├── Tween.md │ ├── TweenAlpha.md │ ├── TweenColor.md │ ├── TweenPosition.md │ ├── TweenProperty.md │ ├── TweenRotation.md │ ├── TweenScale.md │ ├── TweenTransform.md │ ├── VerticalLayout.md │ ├── VerticalLayout_getCellLayout.md │ ├── bounds_getBounds.md │ ├── bounds_getBox.md │ ├── layoutelement_getLayoutElement.md │ ├── tablelayout_clearCellStyle.md │ ├── tablelayout_getCellLayout.md │ ├── tablelayout_getCellRect.md │ ├── tablelayout_getCellStyle.md │ ├── tablelayout_relayout.md │ └── tablelayout_setCellStyle.md ├── debug │ └── README.md ├── device │ └── README.md ├── filter │ └── README.md ├── game │ ├── README.md │ └── shutdown.md ├── gameobject │ ├── CButton.md │ ├── CDom.md │ ├── CDropdown.md │ ├── CInputField.md │ ├── CNode.md │ ├── CObjectLayer.md │ ├── CProgressBar.md │ ├── CScrollBar.md │ ├── CScrollView.md │ ├── CSlider.md │ ├── CSound.md │ ├── CSprite.md │ ├── CTileLayer.md │ ├── CTilemap.md │ ├── CToggle.md │ ├── CUIImage.md │ ├── CUIRoot.md │ ├── CUIText.md │ ├── GameObjectFactory.md │ ├── README.md │ ├── addListener.md │ ├── addListenerOnce.md │ ├── button.md │ ├── clone.md │ ├── dom.md │ ├── dropdown.md │ ├── dropdown_addOptions.md │ ├── dropdown_clearOptions.md │ ├── dropdown_hide.md │ ├── dropdown_show.md │ ├── image.md │ ├── image_imageType.md │ ├── image_resetNativeSize.md │ ├── images │ │ └── imageExample.png │ ├── inputField.md │ ├── node.md │ ├── node_addChild.md │ ├── node_addChildAt.md │ ├── node_addScript.md │ ├── node_destroy.md │ ├── node_destroyImmediately.md │ ├── node_find.md │ ├── node_getBoxIn.md │ ├── node_getChildAt.md │ ├── node_getChildIndex.md │ ├── node_getScript.md │ ├── node_getScripts.md │ ├── node_getWorldBox.md │ ├── node_getWorldCorners.md │ ├── node_getWorldPosition.md │ ├── node_getWorldRotation.md │ ├── node_getWorldScale.md │ ├── node_isDescendantOf.md │ ├── node_rectContains.md │ ├── node_removeChild.md │ ├── node_removeChildAt.md │ ├── node_removeChildren.md │ ├── node_setAnchor.md │ ├── node_setChildIndex.md │ ├── node_setStretch.md │ ├── node_setTransformToWorld.md │ ├── node_snapshotAsAtlas.md │ ├── node_snapshotAsImage.md │ ├── node_swapChildren.md │ ├── node_switchParent.md │ ├── node_toGlobal.md │ ├── node_toLocal.md │ ├── objectLayer.md │ ├── progressBar.md │ ├── removeListener.md │ ├── scrollBar.md │ ├── scrollView.md │ ├── slider.md │ ├── sound.md │ ├── sound_addMarker.md │ ├── sound_fadeIn.md │ ├── sound_pause.md │ ├── sound_play.md │ ├── sound_removeMarker.md │ ├── sound_resume.md │ ├── sound_stop.md │ ├── sprite.md │ ├── sprite_getAnimationInfo.md │ ├── sprite_playAnimation.md │ ├── sprite_resetNativeSize.md │ ├── sprite_stop.md │ ├── sv_setNormalizedPosition.md │ ├── text.md │ ├── tileLayer.md │ ├── tilelayer_getTile.md │ ├── tilelayer_getTileIndex.md │ ├── tilemap.md │ ├── tilemap_generateLayers.md │ ├── tilemap_getLayerByIndex.md │ ├── tilemap_getLayerByName.md │ ├── tilemap_getTilePosition.md │ ├── tilemap_resetNativeSize.md │ └── toggle.md ├── geom │ ├── BezierCurve.md │ ├── Circle.md │ ├── Ellipse.md │ ├── Line.md │ ├── Matrix.md │ ├── Point.md │ ├── Polygon.md │ ├── README.md │ └── Rectangle.md ├── input │ ├── BaseInputEvent.md │ ├── BaseInputModule.md │ ├── CursorMoveEvent.md │ ├── DragEndEvent.md │ ├── DragEvent.md │ ├── DragStartEvent.md │ ├── DropEvent.md │ ├── Input.md │ ├── Input_getPointer.md │ ├── Input_hasCursor.md │ ├── Input_isAltDown.md │ ├── Input_isAnyKey.md │ ├── Input_isAnyKeyDown.md │ ├── Input_isAnyMouse.md │ ├── Input_isAnyMouseDown.md │ ├── Input_isAnyPointer.md │ ├── Input_isAnyPointerStart.md │ ├── Input_isAnyTouch.md │ ├── Input_isAnyTouchStart.md │ ├── Input_isControlDown.md │ ├── Input_isKeyDown.md │ ├── Input_isMetaDown.md │ ├── Input_isMouse.md │ ├── Input_isMouseDown.md │ ├── Input_isPointerStart.md │ ├── Input_isShiftDown.md │ ├── Input_isTouchStart.md │ ├── Key.md │ ├── Key_checkRepeat.md │ ├── Key_setState.md │ ├── Keyboard.md │ ├── Keyboard_isAnyKey.md │ ├── Keyboard_isAnyKeyDown.md │ ├── Keyboard_isKeyDown.md │ ├── Mouse.md │ ├── Mouse_getMouseById.md │ ├── Mouse_isAnyMouse.md │ ├── Mouse_isAnyMouseDown.md │ ├── Mouse_isMouseDown.md │ ├── Pointer.md │ ├── PointerEvent.md │ ├── README.md │ ├── Touch.md │ ├── Touch_getTouchByDeviceId.md │ ├── Touch_getTouchById.md │ ├── Touch_isAnyTouch.md │ ├── Touch_isAnyTouchStart.md │ ├── Touch_isTouchStart.md │ └── WheelEvent.md ├── log │ ├── README.md │ ├── error.md │ ├── important.md │ └── trace.md ├── math │ ├── README.md │ ├── angleBetween.md │ ├── angleBetweenY.md │ ├── average.md │ ├── ceilTo.md │ ├── clamp.md │ ├── degToRad.md │ ├── distance.md │ ├── factorial.md │ ├── floorTo.md │ ├── fuzzyCeil.md │ ├── fuzzyEqual.md │ ├── fuzzyFloor.md │ ├── fuzzyGreaterThan.md │ ├── fuzzyLessThan.md │ ├── getRandom.md │ ├── id.md │ ├── invert.md │ ├── isEven.md │ ├── isOdd.md │ ├── linear.md │ ├── max.md │ ├── maxAdd.md │ ├── min.md │ ├── minSub.md │ ├── multiply.md │ ├── normalizeAngle.md │ ├── radToDeg.md │ ├── random.md │ ├── reverseAngle.md │ ├── roundTo.md │ ├── shear.md │ ├── shuffle.md │ ├── sign.md │ ├── smoothDamp.md │ ├── snapTo.md │ ├── snapToCeil.md │ ├── snapToFloor.md │ ├── uuid.md │ ├── within.md │ ├── wrap.md │ ├── wrapAngle.md │ └── wrapValue.md ├── officialplugins │ ├── README.md │ ├── RichText │ │ ├── README.md │ │ ├── RichText.md │ │ ├── RichTextAttributeParse.md │ │ ├── RichTextBlock.md │ │ ├── RichTextChunk.md │ │ ├── RichTextEmoji.md │ │ ├── RichTextLine.md │ │ ├── RichTextParse.md │ │ ├── RichTextSection.md │ │ ├── RichTextStyle.md │ │ ├── RichTextSymbol.md │ │ ├── RichTextWrap.md │ │ └── UnicodeBlock.md │ ├── arcade │ │ ├── RigidBody.md │ │ └── rigidbody │ │ │ ├── accelerateToObject.md │ │ │ ├── addCollide.md │ │ │ ├── addOverlap.md │ │ │ ├── angleBetween.md │ │ │ ├── distanceBetween.md │ │ │ ├── moveToObject.md │ │ │ ├── removeCollide.md │ │ │ ├── removeOverlap.md │ │ │ ├── reset.md │ │ │ ├── velocityFromAngle.md │ │ │ └── velocityFromRotation.md │ ├── baiduAd │ │ ├── BaiduAd.md │ │ ├── BannerAd.md │ │ └── PopupAd.md │ ├── particleSystem │ │ ├── CParticleSystem.md │ │ └── methods │ │ │ ├── clear.md │ │ │ ├── pause.md │ │ │ ├── reset.md │ │ │ └── start.md │ └── wechat │ │ └── WeChat.md ├── plugin │ ├── README.md │ ├── add.md │ ├── remove.md │ └── removeAll.md ├── serializer │ └── README.md ├── signal │ ├── README.md │ ├── add.md │ ├── addOnce.md │ ├── dispatch.md │ ├── has.md │ ├── remove.md │ └── removeAll.md ├── signalbinding │ └── README.md ├── soundmanager │ └── README.md ├── state │ ├── README.md │ ├── download.md │ └── load.md ├── storage │ ├── README.md │ ├── del.md │ ├── get.md │ ├── restore.md │ ├── save.md │ └── set.md ├── time │ └── README.md ├── timer │ ├── README.md │ ├── add.md │ ├── loop.md │ └── remove.md ├── togglegroup │ ├── add.md │ └── remove.md ├── transition │ └── README.md ├── tween │ ├── playForward.md │ ├── playGroupForward.md │ ├── playGroupReverse.md │ ├── playReverse.md │ ├── resetGroupToBeginning.md │ ├── resetToBeginning.md │ ├── stop.md │ └── stopGroup.md ├── uistate │ └── README.md ├── util │ ├── README.md │ ├── clone.md │ ├── findClass.md │ └── isArray.md └── world │ └── README.md └── manual ├── Action ├── ActionEditor.md ├── ActionManager.md ├── Animator.md ├── README.md └── image │ ├── action.png │ ├── actionFile.png │ ├── actionList.png │ ├── actionView.png │ ├── addAction.png │ ├── addProperty.png │ ├── amFile.png │ ├── amInfo.png │ ├── amNode.png │ ├── amPreview.png │ ├── amTimeline.png │ ├── animator.png │ ├── blueKeys.png │ ├── buttons.png │ ├── curveEditor.png │ ├── curvePanel.png │ ├── customProperty.png │ ├── eventLine.png │ ├── eventPanel.png │ ├── frameView.png │ ├── loopAction.png │ ├── preview.png │ ├── propertyList.png │ ├── propertymenu.png │ ├── record.png │ ├── relative.png │ ├── texture.png │ ├── timeline.png │ ├── tweenAbsolute.png │ ├── tweenRelative.png │ └── valueField.png ├── AssetsLoad ├── README.md └── images │ ├── ref_font.png │ ├── ref_image.png │ ├── ref_prefab_excel_text.png │ ├── ref_sound.png │ └── ref_sprite.png ├── Atlas ├── README.md └── images │ ├── add.jpeg │ ├── atlas.jpeg │ ├── atlas_folder.jpeg │ └── repack.png ├── Behaviour ├── CallSeq.md ├── README.md └── images │ ├── ab.png │ ├── disabled.png │ └── result.png ├── BitmapFont ├── README.md └── images │ ├── code.png │ ├── font.png │ ├── images.png │ ├── options.png │ ├── settings.png │ └── unicode.png ├── BuildinComponents ├── CacheAsBitmap.md ├── DebugViewer.md ├── NodeMask.md ├── README.md ├── TransitionBehaviour.md └── images │ ├── bounds_all.png │ ├── bounds_self.png │ ├── cacheForScreen.png │ ├── cacheForSelf.png │ ├── debug_inspector.png │ ├── debug_viewer.png │ ├── mask.png │ ├── mask1.png │ ├── mask2.png │ ├── transitionColorTintResult.png │ ├── transitionColorTintSetting.png │ ├── transitionFrameResult.png │ └── transitionFrameSetting.png ├── ComponentMenu ├── README.md └── images │ └── 1.png ├── Debug ├── README.md └── images │ ├── chrome.png │ ├── console1.png │ ├── console2.png │ ├── console3.png │ ├── console4.png │ ├── console5.png │ ├── console6.png │ ├── debug2.png │ └── debug3.png ├── DirtyRectangles ├── README.md └── images │ └── dirtyrectangles.png ├── DragonBone ├── README.md └── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── i1.png │ ├── i2.png │ └── i3.png ├── Excel ├── README.md └── images │ ├── excel1.jpeg │ ├── excel2.jpeg │ └── excel3.jpeg ├── ExtendEditor ├── Assistant.md ├── Component.md ├── Inspector.md ├── Layout.md ├── Menu.md ├── README.md ├── Service.md └── images │ ├── angleInput.png │ ├── button.png │ ├── buttonGroup.png │ ├── checkBox.png │ ├── colorPicker.png │ ├── colorPicker1.png │ ├── columnWidths.png │ ├── divider.png │ ├── dropDownList.png │ ├── dropDownList1.png │ ├── inspector.png │ ├── intInput.png │ ├── label.png │ ├── line.png │ ├── menu.jpeg │ ├── multiDropDownList.png │ ├── numberInput.png │ ├── objectInput.png │ ├── sliderInput.png │ ├── stringInput.png │ ├── text.png │ ├── text1.png │ ├── textArea.png │ ├── titleLineCollapsed.png │ └── titleLineExpanded.png ├── Filter ├── README.md └── images │ ├── addfilters.png │ ├── alphamask1.png │ ├── alphamask2.png │ ├── blend1.png │ ├── blend2.png │ ├── blurx1.png │ ├── blurx2.png │ ├── blury1.png │ ├── blury2.png │ ├── filtergroup.png │ ├── gray1.png │ ├── gray2.png │ ├── highlight1.png │ ├── highlight2.png │ ├── keepsource1.png │ └── keepsource2.png ├── FrameAnimation ├── README.md └── images │ ├── atlas.png │ └── frame.png ├── Input ├── README.md └── images │ ├── input1.png │ ├── input2.png │ └── input3.png ├── Interface ├── Hierarchy.md ├── Inspector.md ├── MainMenu.md ├── Project.md ├── README.md ├── Scene.md ├── ToolBar.md └── images │ ├── above.png │ ├── button.png │ ├── child.png │ ├── dom.png │ ├── emitter.png │ ├── grid.png │ ├── hierarchy.jpeg │ ├── hierarchy.png │ ├── image.png │ ├── inputfield.png │ ├── inspector.jpeg │ ├── interface.png │ ├── iphone.png │ ├── list.png │ ├── main_menu.png │ ├── move.jpeg │ ├── node.png │ ├── progressbar.png │ ├── project.png │ ├── run.png │ ├── scale.jpeg │ ├── scene.png │ ├── scrollbar.png │ ├── scrollview.png │ ├── size.jpeg │ ├── slider.png │ ├── sound.png │ ├── sprite.png │ ├── text.png │ ├── tilemap.png │ ├── toggle.png │ ├── toolbar.png │ ├── transform.png │ └── under.png ├── LoadingPrefab ├── README.md ├── images │ ├── background.png │ ├── clue.png │ ├── loading.png │ ├── loadingPrefab.png │ ├── nextState.png │ ├── progress.png │ ├── svg.png │ └── tweenAlpha.png ├── loading.md └── loadingPrefab.md ├── NinePatch ├── README.md └── images │ └── button.png ├── Overview ├── Install.md ├── MacInstall.md ├── WindowsInstall.md └── images │ ├── macDownload.png │ ├── port.png │ ├── project.png │ ├── start.jpeg │ ├── startMac.jpeg │ └── windowsDownload.png ├── Plugin ├── Arcade.md ├── BaiduAd.md ├── ExtraUI │ ├── README.md │ ├── ScrollSupport.md │ ├── TableView.md │ └── TableViewAdapter.md ├── LockOrientation.md ├── Official.md ├── ParticleSystem │ ├── ParticleSystem.md │ └── images │ │ ├── add_particle_system.png │ │ ├── enable_plugin.png │ │ ├── inspector_alpha_module.png │ │ ├── inspector_angular_velocity_module.png │ │ ├── inspector_color_module.png │ │ ├── inspector_frame_animation_module.png │ │ ├── inspector_main_module.png │ │ ├── inspector_scale_module.png │ │ └── inspector_velocity_module.png ├── RichText.md ├── ServerCommunicate.md ├── Wechat.md ├── images │ ├── ad_code.png │ ├── ad_htmls.png │ ├── add.png │ ├── collide1.png │ ├── component_banner_ad.png │ ├── component_popup_ad.png │ ├── import_arcade.png │ ├── import_baidu_ad.png │ ├── import_lock_orientation.png │ ├── import_wechat_api.png │ ├── inspector_lock_orientation.png │ ├── origin_ui.png │ ├── overflow.png │ ├── richtext_all.png │ ├── richtext_attribute.png │ ├── richtext_define1.png │ ├── richtext_define2.png │ ├── richtext_emoji.png │ ├── richtext_h1.png │ ├── richtext_s.png │ ├── richtext_sample.png │ ├── rigidbody.png │ ├── serverComm.png │ ├── tableView_use.png │ ├── unoverflow.png │ ├── wechat_component.png │ ├── wechat_demo_php.png │ ├── wechat_php.png │ ├── with_lock_orientation.png │ └── without_lock_orientation.png ├── server.md └── server.zip ├── Prefab ├── README.md └── images │ ├── alt.png │ ├── ani.png │ ├── apply.png │ ├── background.png │ ├── edit.png │ ├── save.png │ └── text.png ├── Project ├── README.md └── images │ ├── create1.jpeg │ ├── create2.jpeg │ ├── create3.jpeg │ ├── open.jpeg │ └── switch.jpeg ├── Publish ├── README.md └── images │ └── publish.png ├── README.md ├── SUMMARY.md ├── Sample ├── AspectRatioFitter.md ├── AxisLayout.md ├── Button.md ├── Dom.md ├── Dropdown.md ├── Graphics.md ├── InputField.md ├── LayoutComponents.md ├── Node.md ├── ProgressBar.md ├── ScrollView.md ├── Slider.md ├── Sprite.md ├── TableLayout.md ├── Tilemap.md ├── Toggle.md ├── UIImage.md ├── UIRoot.md ├── UIText.md └── images │ ├── aspectRatioExample.png │ ├── button1.png │ ├── button2.png │ ├── button3.png │ ├── dom.png │ ├── dropdown1.png │ ├── dropdown2.png │ ├── dropdown3.png │ ├── graphics_canvas_0.png │ ├── graphics_canvas_1.png │ ├── inputfield1.png │ ├── inputfield2.png │ ├── layout_RealBounds.gif │ ├── layout_RectTransform.gif │ ├── layout_ignore_x.gif │ ├── layout_ignore_y.gif │ ├── layout_ll_hor.png │ ├── layout_ll_ver.png │ ├── layout_lr_hor.png │ ├── layout_lr_ver.png │ ├── layout_rectTransform_bounds.png │ ├── layout_resize_100.png │ ├── layout_ul_hor.png │ ├── layout_ul_ver.png │ ├── layout_ur_hor.png │ ├── layout_ur_ver.png │ ├── layout_wrap_100.png │ ├── node_1.png │ ├── node_2.png │ ├── node_3.png │ ├── node_4.png │ ├── node_5.png │ ├── node_6.png │ ├── node_7.png │ ├── node_8.png │ ├── objectlayer_inspector.png │ ├── progressbar1.png │ ├── progressbar2.png │ ├── progressbar3.png │ ├── progressbar4.png │ ├── progressbar5.png │ ├── scroll1.png │ ├── scroll2.png │ ├── scroll3.png │ ├── scroll4.png │ ├── slider1.png │ ├── slider2.png │ ├── sprite1.jpeg │ ├── sprite2.png │ ├── sprite_0.png │ ├── sprite_1.png │ ├── sprite_2.png │ ├── sprite_3.png │ ├── sprite_4.png │ ├── text1.png │ ├── text2.png │ ├── text3.png │ ├── text4.png │ ├── text5.png │ ├── text6.png │ ├── tiled.png │ ├── tiledmap_format.png │ ├── tiledmap_saveas.png │ ├── tiledmap_scroll.png │ ├── tilelayer_inspector.png │ ├── tilemap.png │ ├── tilemap_inspector.png │ ├── toggle1.png │ ├── toggle2.png │ ├── toggle3.png │ ├── toggle4.png │ ├── uiimage1.png │ ├── uiimage2.png │ ├── uiimage3.png │ ├── uiimage4.png │ ├── uiimage5.png │ └── uiimage6.png ├── Scene └── README.md ├── Scripts ├── README.md └── images │ └── drag.png ├── Serializer ├── README.md └── images │ ├── addcomponent.png │ ├── inspector1.png │ └── inspector2.png ├── Settings ├── README.md └── images │ ├── dnd.png │ └── settings.png ├── Sound ├── README.md └── images │ └── sound.png ├── Storage └── README.md ├── Svn └── README.md ├── Time └── README.md ├── Tween ├── README.md └── images │ ├── curvelist.png │ ├── curvesave.png │ ├── tween.png │ ├── tweenFunc.png │ ├── tweenFuncAdd.png │ ├── tweencolor.png │ ├── tweendom.png │ ├── tweengroup.png │ ├── tweenkey.png │ └── tweenscale.png ├── TypeScript ├── README.md └── images │ └── init.jpeg ├── UI ├── AdapterResolution.md ├── BasicLayout.md ├── README.md ├── Sample.md └── images │ ├── anchor_center.gif │ ├── anchor_corner.gif │ ├── anchor_pos.gif │ ├── anchor_presets.png │ ├── anchor_stretch.gif │ ├── anchoredx.png │ ├── anchoredxy.png │ ├── anchoredy.png │ ├── move.png │ ├── pivot.png │ ├── position.png │ ├── preset_button.jpeg │ ├── rect.png │ ├── rect_tool.png │ ├── rect_transform_inspector.png │ ├── rect_transform_scene.png │ ├── rotate.png │ ├── rotation.png │ ├── scale.png │ ├── scale_adapter.png │ ├── scale_adapter_expand.png │ ├── scale_adapter_fill.png │ ├── scale_adapter_height.png │ ├── scale_adapter_none.png │ ├── scale_adapter_sample.png │ ├── scale_adapter_shrink.png │ ├── scale_adapter_width.png │ ├── size.png │ ├── transform.png │ ├── ui.png │ ├── x_anchoredX.jpeg │ └── xywh.png ├── WebFont ├── README.md └── images │ ├── font.png │ ├── oper.png │ └── webfont.png ├── Wechat ├── OpenDomain.md ├── Publish.md ├── README.md ├── Resource.md ├── SubPackage.md └── images │ ├── mainDomain.png │ ├── publish.png │ ├── subDomain.png │ └── subPackage.png ├── book.json ├── images ├── preview.png └── techstack.png └── video ├── add_atlas.mp4 ├── add_script_to_node.mp4 ├── add_state.mp4 ├── change_settings.mp4 ├── create_frame_animation.mp4 ├── create_new_scene.mp4 ├── create_prefab.mp4 ├── create_project.mp4 ├── drag_node_in_hierachy.mp4 ├── heartPath.mp4 ├── import_dragonbone1.mp4 ├── import_dragonbone2.mp4 ├── open_project.mp4 ├── oper_button.mp4 ├── oper_dom.mp4 ├── oper_graphics.mp4 ├── oper_move_node.mp4 ├── oper_node.mp4 ├── oper_scale_node.mp4 ├── oper_scrollview.mp4 ├── oper_size_node.mp4 ├── oper_uiimage.mp4 ├── plugin_arcade.mp4 ├── sampled_dragonbone.mp4 ├── set_nine_patch.mp4 ├── set_scripts_dep.mp4 ├── switch_project.mp4 ├── switch_state.mp4 └── tilemap.mp4 /en/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/api/README.md -------------------------------------------------------------------------------- /en/api/action/image/actionDef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/api/action/image/actionDef.png -------------------------------------------------------------------------------- /en/api/assets/clear.md: -------------------------------------------------------------------------------- 1 | # [qc.Assets](Assets.md)#clear 2 | 3 | ## Prototype 4 | * void clear() 5 | 6 | ## Description 7 | Clear all the assets. 8 | -------------------------------------------------------------------------------- /en/api/components/FilterGroup.md: -------------------------------------------------------------------------------- 1 | # FilterGroup 2 | See [Filter](http://docs.qiciengine.com/manual/Filter/index.html) 3 | -------------------------------------------------------------------------------- /en/api/components/tablelayout_relayout.md: -------------------------------------------------------------------------------- 1 | # [qc.TableLayout](TableLayout.md).relayout 2 | 3 | ## Prototype 4 | * void relayout() 5 | 6 | ## Description 7 | Relayout the container. 8 | -------------------------------------------------------------------------------- /en/api/filter/README.md: -------------------------------------------------------------------------------- 1 | # Filter 2 | The shader, See: [Manual](http://docs.qiciengine.com/manual/Filter/index.html) 3 | -------------------------------------------------------------------------------- /en/api/gameobject/dropdown_hide.md: -------------------------------------------------------------------------------- 1 | # [qc.Dropdown](CDropdown.md)#hide 2 | 3 | ## Prototype 4 | * void hide() 5 | 6 | ## Description 7 | Hide the dropdown list. 8 | -------------------------------------------------------------------------------- /en/api/gameobject/dropdown_show.md: -------------------------------------------------------------------------------- 1 | # [qc.Dropdown](CDropdown.md)#show 2 | 3 | ## Prototype 4 | * void show() 5 | 6 | ## Description 7 | Show the dropdown list. 8 | -------------------------------------------------------------------------------- /en/api/gameobject/images/imageExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/api/gameobject/images/imageExample.png -------------------------------------------------------------------------------- /en/api/gameobject/node_getWorldSkew.md: -------------------------------------------------------------------------------- 1 | # getWorldSkew 2 | -------------------------------------------------------------------------------- /en/api/gameobject/progressbar_setCircleAngle.md: -------------------------------------------------------------------------------- 1 | # setCircleAngle 2 | -------------------------------------------------------------------------------- /en/api/gameobject/progressbar_setCircleScope.md: -------------------------------------------------------------------------------- 1 | # setCircleScope 2 | -------------------------------------------------------------------------------- /en/api/gameobject/progressbar_setMinMax.md: -------------------------------------------------------------------------------- 1 | # setMinMax 2 | -------------------------------------------------------------------------------- /en/api/gameobject/sound_pause.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).pause 2 | 3 | ## Prototype 4 | * void pause(void) 5 | 6 | ## Description 7 | Pauses playing the clip. 8 | -------------------------------------------------------------------------------- /en/api/gameobject/sound_play.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).play 2 | 3 | ## Prototype 4 | * void play(void) 5 | 6 | ## Description 7 | Plays the clip. 8 | -------------------------------------------------------------------------------- /en/api/gameobject/sound_removeMarker.md: -------------------------------------------------------------------------------- 1 | # [qc.Sound](sound.md).removeMarker 2 | 3 | ## Prototype 4 | * void removeMarker() 5 | 6 | ## Description 7 | Remove marker. 8 | -------------------------------------------------------------------------------- /en/api/gameobject/sound_resume.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).resume 2 | 3 | ## Prototype 4 | * void resume(void) 5 | 6 | ## Description 7 | Resumes playing the clip. -------------------------------------------------------------------------------- /en/api/gameobject/sound_stop.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).stop 2 | 3 | ## Prototype 4 | * void stop(void) 5 | 6 | ## Description 7 | Stops playing the clip. 8 | -------------------------------------------------------------------------------- /en/api/gameobject/sprite_stop.md: -------------------------------------------------------------------------------- 1 | # [qc.Sprite](CSprite.md).stop 2 | 3 | ## Prototype 4 | * void stop(void) 5 | 6 | ## Description 7 | Stop current animation. 8 | -------------------------------------------------------------------------------- /en/api/gs/disconnect.md: -------------------------------------------------------------------------------- 1 | # [qc.GS](README.md).disconnect 2 | 3 | ## Prototype 4 | * void disconnect() 5 | 6 | ## Decription 7 | Disconnect from the game server. 8 | 9 | -------------------------------------------------------------------------------- /en/api/input/DragEvent.md: -------------------------------------------------------------------------------- 1 | # qc.DragEvent 2 | inherit [qc.PointerEvent](PointerEvent.md) 3 | 4 | ## Description 5 | Event of drag. 6 | -------------------------------------------------------------------------------- /en/api/input/Input_hasCursor.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).hasCursor 2 | 3 | ## Prototype 4 | * boolean hasCursor(void); 5 | 6 | ## Description 7 | Check whether curse is existed. 8 | -------------------------------------------------------------------------------- /en/api/input/Input_isAltDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAltDown 2 | 3 | ## Prototype 4 | * boolean isAltDown(void); 5 | 6 | ## Description 7 | Check whether Alt key is pressed 8 | -------------------------------------------------------------------------------- /en/api/input/Input_isAnyKey.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyKey 2 | 3 | see : [qc.Keyboard.isAnyKey](Keyboard_isAnyKey.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isAnyKeyDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyKeyDown 2 | 3 | see: [qc.Keyboard.isAnyKeyDown](Keyboard_isAnyKeyDown.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isAnyMouse.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyMouse 2 | 3 | see : [qc.Mouse.isAnyMouse](Mouse_isAnyMouse.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isAnyMouseDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyMouseDown 2 | 3 | see : [qc.Mouse.isAnyMouseDown](Mouse_isAnyMouseDown.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isAnyPointer.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyPointer 2 | 3 | see : [qc.Mouse.isAnyMouse](Mouse_isAnyMouse.md) and [qc.Touch.isAnyTouch](Touch_isAnyTouch.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isAnyTouch.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyTouch 2 | 3 | see : [qc.Touch.isAnyTouch](Touch_isAnyTouch.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isAnyTouchStart.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyTouchStart 2 | 3 | see : [qc.Touch.isAnyTouchStart](Touch_isAnyTouchStart.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isKeyDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isKeyDown 2 | 3 | see : [qc.Keyboard.isKeyDown](Keyboard_isKeyDown.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isMetaDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isMetaDown 2 | 3 | ## Prototype 4 | * boolean isMetaDown(void); 5 | 6 | ## Description 7 | Check whether Meta key is pressed 8 | -------------------------------------------------------------------------------- /en/api/input/Input_isMouseDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isMouseDown 2 | 3 | see : [qc.Mouse.isMouseDown](Mouse_isMouseDown.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isPointerStart.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isPointerStart 2 | 3 | see : [qc.Mouse.isMouseDown](Mouse_isMouseDown.md) and [qc.Touch.isTouchStart](Touch_isTouchStart.md) 4 | -------------------------------------------------------------------------------- /en/api/input/Input_isShiftDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isShiftDown 2 | 3 | ## Prototype 4 | * boolean isShiftDown(void); 5 | 6 | ## Description 7 | Check whether Shift key is pressed 8 | -------------------------------------------------------------------------------- /en/api/input/Input_isTouchStart.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isTouchStart 2 | 3 | see : [qc.Touch.isTouchStart](Touch_isTouchStart.md) 4 | -------------------------------------------------------------------------------- /en/api/input/PointerEvent.md: -------------------------------------------------------------------------------- 1 | # qc.PointerEvent 2 | inherit [qc.BaseInputEvent](BaseInputEvent.md) 3 | 4 | ## Description 5 | It is a class indicates pointer event. 6 | -------------------------------------------------------------------------------- /en/api/input/Touch_getTouchById.md: -------------------------------------------------------------------------------- 1 | # [qc.Touch](Touch.md).getTouchById 2 | 3 | ## Prototype 4 | * qc.Pointer getTouchById(id:int) 5 | 6 | ## Description 7 | Get touch by id 8 | -------------------------------------------------------------------------------- /en/api/input/cursorPosistion.md: -------------------------------------------------------------------------------- 1 | # cursorPosistion 2 | -------------------------------------------------------------------------------- /en/api/signal/removeAll.md: -------------------------------------------------------------------------------- 1 | # [qc.Signal](README.md).removeAll 2 | 3 | ## Prototype 4 | * void removeAll(); 5 | 6 | ## Description 7 | Remove all event listeners. 8 | -------------------------------------------------------------------------------- /en/api/stage/destroy.md: -------------------------------------------------------------------------------- 1 | # [qc.Stage](README.md).destroy 2 | 3 | ## Prototype 4 | * void destroy() 5 | 6 | ## Description 7 | Destroy stage 8 | -------------------------------------------------------------------------------- /en/api/stage/updateTransform.md: -------------------------------------------------------------------------------- 1 | # [qc.Stage](README.md).updateTransform 2 | 3 | ## Prototype 4 | * void updateTransform() 5 | 6 | ## Description 7 | Update all chirdren's transforms. 8 | -------------------------------------------------------------------------------- /en/api/storage/del.md: -------------------------------------------------------------------------------- 1 | # [qc.Storage](README.md).del 2 | 3 | ## Prototype 4 | * void del(string key); 5 | 6 | ## Description 7 | Delete a item. -------------------------------------------------------------------------------- /en/api/storage/save.md: -------------------------------------------------------------------------------- 1 | # [qc.Storage](README.md).save 2 | 3 | ## Prototype 4 | * void save() 5 | 6 | ## Description 7 | Save all datas. -------------------------------------------------------------------------------- /en/api/togglegroup/add.md: -------------------------------------------------------------------------------- 1 | # add 2 | -------------------------------------------------------------------------------- /en/api/togglegroup/remove.md: -------------------------------------------------------------------------------- 1 | # remove 2 | -------------------------------------------------------------------------------- /en/api/tween/reset.md: -------------------------------------------------------------------------------- 1 | # reset 2 | -------------------------------------------------------------------------------- /en/api/tween/resetGroup.md: -------------------------------------------------------------------------------- 1 | # resetGroup 2 | -------------------------------------------------------------------------------- /en/api/tween/stop.md: -------------------------------------------------------------------------------- 1 | # [qc.Tween](../components/Tween.md).stop 2 | 3 | ## Prototype 4 | * void stop() 5 | 6 | ## Description 7 | Stop the tween. 8 | 9 | -------------------------------------------------------------------------------- /en/manual/Action/image/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/action.png -------------------------------------------------------------------------------- /en/manual/Action/image/actionFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/actionFile.png -------------------------------------------------------------------------------- /en/manual/Action/image/actionList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/actionList.png -------------------------------------------------------------------------------- /en/manual/Action/image/actionView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/actionView.png -------------------------------------------------------------------------------- /en/manual/Action/image/addAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/addAction.png -------------------------------------------------------------------------------- /en/manual/Action/image/addProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/addProperty.png -------------------------------------------------------------------------------- /en/manual/Action/image/amFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/amFile.png -------------------------------------------------------------------------------- /en/manual/Action/image/amInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/amInfo.png -------------------------------------------------------------------------------- /en/manual/Action/image/amNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/amNode.png -------------------------------------------------------------------------------- /en/manual/Action/image/amPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/amPreview.png -------------------------------------------------------------------------------- /en/manual/Action/image/amTimeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/amTimeline.png -------------------------------------------------------------------------------- /en/manual/Action/image/animator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/animator.png -------------------------------------------------------------------------------- /en/manual/Action/image/blueKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/blueKeys.png -------------------------------------------------------------------------------- /en/manual/Action/image/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/buttons.png -------------------------------------------------------------------------------- /en/manual/Action/image/curveEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/curveEditor.png -------------------------------------------------------------------------------- /en/manual/Action/image/curvePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/curvePanel.png -------------------------------------------------------------------------------- /en/manual/Action/image/customProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/customProperty.png -------------------------------------------------------------------------------- /en/manual/Action/image/eventLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/eventLine.png -------------------------------------------------------------------------------- /en/manual/Action/image/eventPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/eventPanel.png -------------------------------------------------------------------------------- /en/manual/Action/image/frameView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/frameView.png -------------------------------------------------------------------------------- /en/manual/Action/image/loopAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/loopAction.png -------------------------------------------------------------------------------- /en/manual/Action/image/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/preview.png -------------------------------------------------------------------------------- /en/manual/Action/image/propertyList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/propertyList.png -------------------------------------------------------------------------------- /en/manual/Action/image/propertymenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/propertymenu.png -------------------------------------------------------------------------------- /en/manual/Action/image/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/record.png -------------------------------------------------------------------------------- /en/manual/Action/image/relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/relative.png -------------------------------------------------------------------------------- /en/manual/Action/image/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/texture.png -------------------------------------------------------------------------------- /en/manual/Action/image/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/timeline.png -------------------------------------------------------------------------------- /en/manual/Action/image/tweenAbsolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/tweenAbsolute.png -------------------------------------------------------------------------------- /en/manual/Action/image/tweenRelative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/tweenRelative.png -------------------------------------------------------------------------------- /en/manual/Action/image/valueField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Action/image/valueField.png -------------------------------------------------------------------------------- /en/manual/AssetsLoad/images/ref_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/AssetsLoad/images/ref_font.png -------------------------------------------------------------------------------- /en/manual/AssetsLoad/images/ref_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/AssetsLoad/images/ref_image.png -------------------------------------------------------------------------------- /en/manual/AssetsLoad/images/ref_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/AssetsLoad/images/ref_sound.png -------------------------------------------------------------------------------- /en/manual/AssetsLoad/images/ref_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/AssetsLoad/images/ref_sprite.png -------------------------------------------------------------------------------- /en/manual/Atlas/images/add.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Atlas/images/add.jpeg -------------------------------------------------------------------------------- /en/manual/Atlas/images/atlas.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Atlas/images/atlas.jpeg -------------------------------------------------------------------------------- /en/manual/Atlas/images/atlas_folder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Atlas/images/atlas_folder.jpeg -------------------------------------------------------------------------------- /en/manual/Atlas/images/repack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Atlas/images/repack.png -------------------------------------------------------------------------------- /en/manual/Behaviour/images/ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Behaviour/images/ab.png -------------------------------------------------------------------------------- /en/manual/Behaviour/images/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Behaviour/images/disabled.png -------------------------------------------------------------------------------- /en/manual/Behaviour/images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Behaviour/images/result.png -------------------------------------------------------------------------------- /en/manual/BitmapFont/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/BitmapFont/images/code.png -------------------------------------------------------------------------------- /en/manual/BitmapFont/images/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/BitmapFont/images/font.png -------------------------------------------------------------------------------- /en/manual/BitmapFont/images/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/BitmapFont/images/images.png -------------------------------------------------------------------------------- /en/manual/BitmapFont/images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/BitmapFont/images/options.png -------------------------------------------------------------------------------- /en/manual/BitmapFont/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/BitmapFont/images/settings.png -------------------------------------------------------------------------------- /en/manual/BitmapFont/images/unicode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/BitmapFont/images/unicode.png -------------------------------------------------------------------------------- /en/manual/BuildinComponents/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/BuildinComponents/images/mask.png -------------------------------------------------------------------------------- /en/manual/ComponentMenu/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ComponentMenu/images/1.png -------------------------------------------------------------------------------- /en/manual/Debug/images/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/chrome.png -------------------------------------------------------------------------------- /en/manual/Debug/images/console1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/console1.png -------------------------------------------------------------------------------- /en/manual/Debug/images/console2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/console2.png -------------------------------------------------------------------------------- /en/manual/Debug/images/console3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/console3.png -------------------------------------------------------------------------------- /en/manual/Debug/images/console4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/console4.png -------------------------------------------------------------------------------- /en/manual/Debug/images/console5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/console5.png -------------------------------------------------------------------------------- /en/manual/Debug/images/console6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/console6.png -------------------------------------------------------------------------------- /en/manual/Debug/images/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/debug2.png -------------------------------------------------------------------------------- /en/manual/Debug/images/debug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Debug/images/debug3.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/1.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/2.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/3.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/4.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/5.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/6.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/7.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/8.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/9.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/i1.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/i2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/i2.png -------------------------------------------------------------------------------- /en/manual/DragonBone/images/i3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/DragonBone/images/i3.png -------------------------------------------------------------------------------- /en/manual/Excel/images/excel1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Excel/images/excel1.jpeg -------------------------------------------------------------------------------- /en/manual/Excel/images/excel2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Excel/images/excel2.jpeg -------------------------------------------------------------------------------- /en/manual/Excel/images/excel3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Excel/images/excel3.jpeg -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/button.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/checkBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/checkBox.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/divider.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/inspector.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/intInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/intInput.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/label.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/line.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/menu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/menu.jpeg -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/text.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/text1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/text1.png -------------------------------------------------------------------------------- /en/manual/ExtendEditor/images/textArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/ExtendEditor/images/textArea.png -------------------------------------------------------------------------------- /en/manual/Filter/images/addfilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/addfilters.png -------------------------------------------------------------------------------- /en/manual/Filter/images/alphamask1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/alphamask1.png -------------------------------------------------------------------------------- /en/manual/Filter/images/alphamask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/alphamask2.png -------------------------------------------------------------------------------- /en/manual/Filter/images/blend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/blend1.png -------------------------------------------------------------------------------- /en/manual/Filter/images/blend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/blend2.png -------------------------------------------------------------------------------- /en/manual/Filter/images/blurx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/blurx1.png -------------------------------------------------------------------------------- /en/manual/Filter/images/blurx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/blurx2.png -------------------------------------------------------------------------------- /en/manual/Filter/images/blury1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/blury1.png -------------------------------------------------------------------------------- /en/manual/Filter/images/blury2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/blury2.png -------------------------------------------------------------------------------- /en/manual/Filter/images/filtergroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/filtergroup.png -------------------------------------------------------------------------------- /en/manual/Filter/images/gray1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/gray1.png -------------------------------------------------------------------------------- /en/manual/Filter/images/gray2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/gray2.png -------------------------------------------------------------------------------- /en/manual/Filter/images/highlight1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/highlight1.png -------------------------------------------------------------------------------- /en/manual/Filter/images/highlight2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/highlight2.png -------------------------------------------------------------------------------- /en/manual/Filter/images/keepsource1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/keepsource1.png -------------------------------------------------------------------------------- /en/manual/Filter/images/keepsource2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Filter/images/keepsource2.png -------------------------------------------------------------------------------- /en/manual/FrameAnimation/images/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/FrameAnimation/images/atlas.png -------------------------------------------------------------------------------- /en/manual/FrameAnimation/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/FrameAnimation/images/frame.png -------------------------------------------------------------------------------- /en/manual/Input/images/input1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Input/images/input1.png -------------------------------------------------------------------------------- /en/manual/Input/images/input2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Input/images/input2.png -------------------------------------------------------------------------------- /en/manual/Input/images/input3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Input/images/input3.png -------------------------------------------------------------------------------- /en/manual/Interface/images/above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/above.png -------------------------------------------------------------------------------- /en/manual/Interface/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/button.png -------------------------------------------------------------------------------- /en/manual/Interface/images/child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/child.png -------------------------------------------------------------------------------- /en/manual/Interface/images/dom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/dom.png -------------------------------------------------------------------------------- /en/manual/Interface/images/emitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/emitter.png -------------------------------------------------------------------------------- /en/manual/Interface/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/grid.png -------------------------------------------------------------------------------- /en/manual/Interface/images/hierarchy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/hierarchy.jpeg -------------------------------------------------------------------------------- /en/manual/Interface/images/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/hierarchy.png -------------------------------------------------------------------------------- /en/manual/Interface/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/image.png -------------------------------------------------------------------------------- /en/manual/Interface/images/inputfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/inputfield.png -------------------------------------------------------------------------------- /en/manual/Interface/images/inspector.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/inspector.jpeg -------------------------------------------------------------------------------- /en/manual/Interface/images/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/interface.png -------------------------------------------------------------------------------- /en/manual/Interface/images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/iphone.png -------------------------------------------------------------------------------- /en/manual/Interface/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/list.png -------------------------------------------------------------------------------- /en/manual/Interface/images/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/main_menu.png -------------------------------------------------------------------------------- /en/manual/Interface/images/move.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/move.jpeg -------------------------------------------------------------------------------- /en/manual/Interface/images/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/node.png -------------------------------------------------------------------------------- /en/manual/Interface/images/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/progressbar.png -------------------------------------------------------------------------------- /en/manual/Interface/images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/project.png -------------------------------------------------------------------------------- /en/manual/Interface/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/run.png -------------------------------------------------------------------------------- /en/manual/Interface/images/scale.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/scale.jpeg -------------------------------------------------------------------------------- /en/manual/Interface/images/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/scene.png -------------------------------------------------------------------------------- /en/manual/Interface/images/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/scrollbar.png -------------------------------------------------------------------------------- /en/manual/Interface/images/scrollview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/scrollview.png -------------------------------------------------------------------------------- /en/manual/Interface/images/size.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/size.jpeg -------------------------------------------------------------------------------- /en/manual/Interface/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/slider.png -------------------------------------------------------------------------------- /en/manual/Interface/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/sound.png -------------------------------------------------------------------------------- /en/manual/Interface/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/sprite.png -------------------------------------------------------------------------------- /en/manual/Interface/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/text.png -------------------------------------------------------------------------------- /en/manual/Interface/images/tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/tilemap.png -------------------------------------------------------------------------------- /en/manual/Interface/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/toggle.png -------------------------------------------------------------------------------- /en/manual/Interface/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/toolbar.png -------------------------------------------------------------------------------- /en/manual/Interface/images/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/transform.png -------------------------------------------------------------------------------- /en/manual/Interface/images/under.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Interface/images/under.png -------------------------------------------------------------------------------- /en/manual/LoadingPrefab/images/clue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/LoadingPrefab/images/clue.png -------------------------------------------------------------------------------- /en/manual/LoadingPrefab/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/LoadingPrefab/images/loading.png -------------------------------------------------------------------------------- /en/manual/LoadingPrefab/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/LoadingPrefab/images/progress.png -------------------------------------------------------------------------------- /en/manual/LoadingPrefab/images/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/LoadingPrefab/images/svg.png -------------------------------------------------------------------------------- /en/manual/NinePatch/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/NinePatch/images/button.png -------------------------------------------------------------------------------- /en/manual/Overview/Install.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | * [Installation on Windows](WindowsInstall.md) 3 | * [Installation on Mac OS X](MacInstall.md) 4 | -------------------------------------------------------------------------------- /en/manual/Overview/images/macDownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Overview/images/macDownload.png -------------------------------------------------------------------------------- /en/manual/Overview/images/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Overview/images/port.png -------------------------------------------------------------------------------- /en/manual/Overview/images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Overview/images/project.png -------------------------------------------------------------------------------- /en/manual/Overview/images/start.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Overview/images/start.jpeg -------------------------------------------------------------------------------- /en/manual/Overview/images/startMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Overview/images/startMac.png -------------------------------------------------------------------------------- /en/manual/Plugin/README.md: -------------------------------------------------------------------------------- 1 | # Third Party Plugins 2 | 3 | -------------------------------------------------------------------------------- /en/manual/Plugin/WechatShare.md: -------------------------------------------------------------------------------- 1 | # 微信分享 2 | -------------------------------------------------------------------------------- /en/manual/Plugin/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Plugin/images/add.png -------------------------------------------------------------------------------- /en/manual/Plugin/images/import_arcade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Plugin/images/import_arcade.png -------------------------------------------------------------------------------- /en/manual/Plugin/images/origin_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Plugin/images/origin_ui.png -------------------------------------------------------------------------------- /en/manual/Plugin/images/rigidbody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Plugin/images/rigidbody.png -------------------------------------------------------------------------------- /en/manual/Plugin/images/serverComm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Plugin/images/serverComm.png -------------------------------------------------------------------------------- /en/manual/Plugin/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Plugin/plugin.md -------------------------------------------------------------------------------- /en/manual/Plugin/server.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Plugin/server.zip -------------------------------------------------------------------------------- /en/manual/Prefab/images/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Prefab/images/alt.png -------------------------------------------------------------------------------- /en/manual/Prefab/images/ani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Prefab/images/ani.png -------------------------------------------------------------------------------- /en/manual/Prefab/images/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Prefab/images/apply.png -------------------------------------------------------------------------------- /en/manual/Prefab/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Prefab/images/background.png -------------------------------------------------------------------------------- /en/manual/Prefab/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Prefab/images/edit.png -------------------------------------------------------------------------------- /en/manual/Prefab/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Prefab/images/save.png -------------------------------------------------------------------------------- /en/manual/Prefab/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Prefab/images/text.png -------------------------------------------------------------------------------- /en/manual/Project/images/create1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Project/images/create1.jpeg -------------------------------------------------------------------------------- /en/manual/Project/images/create2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Project/images/create2.jpeg -------------------------------------------------------------------------------- /en/manual/Project/images/create3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Project/images/create3.jpeg -------------------------------------------------------------------------------- /en/manual/Project/images/open.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Project/images/open.jpeg -------------------------------------------------------------------------------- /en/manual/Project/images/switch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Project/images/switch.jpeg -------------------------------------------------------------------------------- /en/manual/Publish/images/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Publish/images/publish.png -------------------------------------------------------------------------------- /en/manual/Sample/images/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/button1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/button2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/button3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/button3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/dom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/dom.png -------------------------------------------------------------------------------- /en/manual/Sample/images/dropdown1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/dropdown1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/dropdown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/dropdown2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/dropdown3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/dropdown3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/inputfield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/inputfield1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/inputfield2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/inputfield2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ignore_x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ignore_x.gif -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ignore_y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ignore_y.gif -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ll_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ll_hor.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ll_ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ll_ver.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_lr_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_lr_hor.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_lr_ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_lr_ver.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ul_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ul_hor.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ul_ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ul_ver.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ur_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ur_hor.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_ur_ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_ur_ver.png -------------------------------------------------------------------------------- /en/manual/Sample/images/layout_wrap_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/layout_wrap_100.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_4.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_5.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_6.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_7.png -------------------------------------------------------------------------------- /en/manual/Sample/images/node_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/node_8.png -------------------------------------------------------------------------------- /en/manual/Sample/images/progressbar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/progressbar1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/progressbar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/progressbar2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/progressbar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/progressbar3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/progressbar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/progressbar4.png -------------------------------------------------------------------------------- /en/manual/Sample/images/progressbar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/progressbar5.png -------------------------------------------------------------------------------- /en/manual/Sample/images/scroll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/scroll1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/scroll2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/scroll2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/scroll3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/scroll3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/scroll4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/scroll4.png -------------------------------------------------------------------------------- /en/manual/Sample/images/slider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/slider1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/slider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/slider2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/sprite1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/sprite1.jpeg -------------------------------------------------------------------------------- /en/manual/Sample/images/sprite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/sprite2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/sprite_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/sprite_0.png -------------------------------------------------------------------------------- /en/manual/Sample/images/sprite_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/sprite_1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/sprite_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/sprite_2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/sprite_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/sprite_3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/sprite_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/sprite_4.png -------------------------------------------------------------------------------- /en/manual/Sample/images/text1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/text1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/text2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/text2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/text3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/text3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/text4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/text4.png -------------------------------------------------------------------------------- /en/manual/Sample/images/text5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/text5.png -------------------------------------------------------------------------------- /en/manual/Sample/images/text6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/text6.png -------------------------------------------------------------------------------- /en/manual/Sample/images/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/tiled.png -------------------------------------------------------------------------------- /en/manual/Sample/images/tiledmap_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/tiledmap_format.png -------------------------------------------------------------------------------- /en/manual/Sample/images/tiledmap_saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/tiledmap_saveas.png -------------------------------------------------------------------------------- /en/manual/Sample/images/tiledmap_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/tiledmap_scroll.png -------------------------------------------------------------------------------- /en/manual/Sample/images/tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/tilemap.png -------------------------------------------------------------------------------- /en/manual/Sample/images/toggle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/toggle1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/toggle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/toggle2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/toggle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/toggle3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/toggle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/toggle4.png -------------------------------------------------------------------------------- /en/manual/Sample/images/uiimage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/uiimage1.png -------------------------------------------------------------------------------- /en/manual/Sample/images/uiimage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/uiimage2.png -------------------------------------------------------------------------------- /en/manual/Sample/images/uiimage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/uiimage3.png -------------------------------------------------------------------------------- /en/manual/Sample/images/uiimage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/uiimage4.png -------------------------------------------------------------------------------- /en/manual/Sample/images/uiimage5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/uiimage5.png -------------------------------------------------------------------------------- /en/manual/Sample/images/uiimage6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sample/images/uiimage6.png -------------------------------------------------------------------------------- /en/manual/Scripts/images/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Scripts/images/drag.png -------------------------------------------------------------------------------- /en/manual/Serializer/images/inspector1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Serializer/images/inspector1.png -------------------------------------------------------------------------------- /en/manual/Serializer/images/inspector2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Serializer/images/inspector2.png -------------------------------------------------------------------------------- /en/manual/Settings/images/dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Settings/images/dnd.png -------------------------------------------------------------------------------- /en/manual/Settings/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Settings/images/settings.png -------------------------------------------------------------------------------- /en/manual/Sound/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Sound/images/sound.png -------------------------------------------------------------------------------- /en/manual/Tween/images/curvelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/curvelist.png -------------------------------------------------------------------------------- /en/manual/Tween/images/curvesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/curvesave.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tween.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tweenFunc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tweenFunc.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tweenFuncAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tweenFuncAdd.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tweencolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tweencolor.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tweendom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tweendom.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tweengroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tweengroup.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tweenkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tweenkey.png -------------------------------------------------------------------------------- /en/manual/Tween/images/tweenscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/Tween/images/tweenscale.png -------------------------------------------------------------------------------- /en/manual/TypeScript/images/init.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/TypeScript/images/init.jpeg -------------------------------------------------------------------------------- /en/manual/UI/images/anchor_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchor_center.gif -------------------------------------------------------------------------------- /en/manual/UI/images/anchor_corner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchor_corner.gif -------------------------------------------------------------------------------- /en/manual/UI/images/anchor_pos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchor_pos.gif -------------------------------------------------------------------------------- /en/manual/UI/images/anchor_presets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchor_presets.png -------------------------------------------------------------------------------- /en/manual/UI/images/anchor_stretch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchor_stretch.gif -------------------------------------------------------------------------------- /en/manual/UI/images/anchoredx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchoredx.png -------------------------------------------------------------------------------- /en/manual/UI/images/anchoredxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchoredxy.png -------------------------------------------------------------------------------- /en/manual/UI/images/anchoredy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/anchoredy.png -------------------------------------------------------------------------------- /en/manual/UI/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/move.png -------------------------------------------------------------------------------- /en/manual/UI/images/pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/pivot.png -------------------------------------------------------------------------------- /en/manual/UI/images/position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/position.png -------------------------------------------------------------------------------- /en/manual/UI/images/preset_button.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/preset_button.jpeg -------------------------------------------------------------------------------- /en/manual/UI/images/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/rect.png -------------------------------------------------------------------------------- /en/manual/UI/images/rect_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/rect_tool.png -------------------------------------------------------------------------------- /en/manual/UI/images/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/rotate.png -------------------------------------------------------------------------------- /en/manual/UI/images/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/rotation.png -------------------------------------------------------------------------------- /en/manual/UI/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/scale.png -------------------------------------------------------------------------------- /en/manual/UI/images/scale_adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/scale_adapter.png -------------------------------------------------------------------------------- /en/manual/UI/images/scale_adapter_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/scale_adapter_fill.png -------------------------------------------------------------------------------- /en/manual/UI/images/scale_adapter_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/scale_adapter_none.png -------------------------------------------------------------------------------- /en/manual/UI/images/scale_adapter_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/scale_adapter_width.png -------------------------------------------------------------------------------- /en/manual/UI/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/size.png -------------------------------------------------------------------------------- /en/manual/UI/images/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/transform.png -------------------------------------------------------------------------------- /en/manual/UI/images/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/ui.png -------------------------------------------------------------------------------- /en/manual/UI/images/xywh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/UI/images/xywh.png -------------------------------------------------------------------------------- /en/manual/WebFont/images/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/WebFont/images/font.png -------------------------------------------------------------------------------- /en/manual/WebFont/images/oper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/WebFont/images/oper.png -------------------------------------------------------------------------------- /en/manual/WebFont/images/webfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/WebFont/images/webfont.png -------------------------------------------------------------------------------- /en/manual/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/images/preview.png -------------------------------------------------------------------------------- /en/manual/images/techstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/images/techstack.png -------------------------------------------------------------------------------- /en/manual/video/add_atlas.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/add_atlas.mp4 -------------------------------------------------------------------------------- /en/manual/video/add_script_to_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/add_script_to_node.mp4 -------------------------------------------------------------------------------- /en/manual/video/add_state.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/add_state.mp4 -------------------------------------------------------------------------------- /en/manual/video/change_settings.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/change_settings.mp4 -------------------------------------------------------------------------------- /en/manual/video/create_frame_animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/create_frame_animation.mp4 -------------------------------------------------------------------------------- /en/manual/video/create_new_scene.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/create_new_scene.mp4 -------------------------------------------------------------------------------- /en/manual/video/create_prefab.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/create_prefab.mp4 -------------------------------------------------------------------------------- /en/manual/video/create_project.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/create_project.mp4 -------------------------------------------------------------------------------- /en/manual/video/drag_node_in_hierachy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/drag_node_in_hierachy.mp4 -------------------------------------------------------------------------------- /en/manual/video/heartPath.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/heartPath.mp4 -------------------------------------------------------------------------------- /en/manual/video/import_dragonbone1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/import_dragonbone1.mp4 -------------------------------------------------------------------------------- /en/manual/video/import_dragonbone2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/import_dragonbone2.mp4 -------------------------------------------------------------------------------- /en/manual/video/open_project.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/open_project.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_button.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_button.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_dom.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_dom.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_graphics.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_graphics.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_move_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_move_node.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_node.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_scale_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_scale_node.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_scrollview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_scrollview.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_size_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_size_node.mp4 -------------------------------------------------------------------------------- /en/manual/video/oper_uiimage.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/oper_uiimage.mp4 -------------------------------------------------------------------------------- /en/manual/video/plugin_arcade.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/plugin_arcade.mp4 -------------------------------------------------------------------------------- /en/manual/video/sampled_dragonbone.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/sampled_dragonbone.mp4 -------------------------------------------------------------------------------- /en/manual/video/set_nine_patch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/set_nine_patch.mp4 -------------------------------------------------------------------------------- /en/manual/video/set_scripts_dep.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/set_scripts_dep.mp4 -------------------------------------------------------------------------------- /en/manual/video/switch_project.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/switch_project.mp4 -------------------------------------------------------------------------------- /en/manual/video/switch_state.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/switch_state.mp4 -------------------------------------------------------------------------------- /en/manual/video/tilemap.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/en/manual/video/tilemap.mp4 -------------------------------------------------------------------------------- /zh/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/api/README.md -------------------------------------------------------------------------------- /zh/api/action/image/actionDef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/api/action/image/actionDef.png -------------------------------------------------------------------------------- /zh/api/assets/clear.md: -------------------------------------------------------------------------------- 1 | # [qc.Assets](Assets.md).clear 2 | 3 | ## 原型 4 | * void clear(); 5 | 6 | ## 说明 7 | 清理所有已下载的资源。 8 | -------------------------------------------------------------------------------- /zh/api/assets/getXHR.md: -------------------------------------------------------------------------------- 1 | # [qc.AssetUtil](AssetUtil.md).getXHR 2 | 3 | ## 原型 4 | * XMLHTTPREQUEST getXHR() 5 | 6 | ## 说明 7 | 取得 XMLHTTPREQUEST 对象,使用该对象进行自定义的网络操作 8 | -------------------------------------------------------------------------------- /zh/api/behaviour/destroy.md: -------------------------------------------------------------------------------- 1 | # qc.Behaviour#destroy 2 | 3 | ## 原型 4 | * void destroy(void); 5 | 6 | ## 说明 7 | 销毁本组件,并从挂载的节点删除。此函数会触发onDestroy的调用 8 | 9 | ## 范例 10 | -------------------------------------------------------------------------------- /zh/api/camera/README.md: -------------------------------------------------------------------------------- 1 | # qc.Camera 2 | 3 | ## 描述 4 | 目前暂不实现 camera 相关的功能 5 | 6 | ## 变量 7 | 无 8 | 9 | ## 方法 10 | 无 11 | -------------------------------------------------------------------------------- /zh/api/components/FilterGroup.md: -------------------------------------------------------------------------------- 1 | # FilterGroup 2 | 见:[Filter 着色器](http://docs.zuoyouxi.com/manual/Filter/index.html) -------------------------------------------------------------------------------- /zh/api/components/tablelayout_relayout.md: -------------------------------------------------------------------------------- 1 | # [qc.TableLayout](TableLayout.md).relayout 2 | 3 | ## 原型 4 | * void relayout() 5 | 6 | ## 说明 7 | 重新布局 8 | -------------------------------------------------------------------------------- /zh/api/filter/README.md: -------------------------------------------------------------------------------- 1 | # Filter - 着色器 2 | 见:[用户手册](http://docs.zuoyouxi.com/manual/Filter/index.html) 3 | 4 | -------------------------------------------------------------------------------- /zh/api/game/shutdown.md: -------------------------------------------------------------------------------- 1 | # [qc.Game](README.md).shutdown 2 | 3 | ## 原型 4 | * void shutdown(void); 5 | 6 | ## 说明 7 | 销毁游戏并回收资源。一般来说不需要调用,浏览器刷新或关闭后,所有的资源能够被浏览器自动给回收。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/dropdown_clearOptions.md: -------------------------------------------------------------------------------- 1 | # [qc.Dropdown](CDropdown.md)#clearOptions 2 | 3 | ## 原型 4 | * void clearOptions() 5 | 6 | ## 描述 7 | 清空下拉框的所有可选项。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/dropdown_hide.md: -------------------------------------------------------------------------------- 1 | # [qc.Dropdown](CDropdown.md)#hide 2 | 3 | ## 原型 4 | * void hide() 5 | 6 | ## 描述 7 | 隐藏下拉框列表。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/dropdown_show.md: -------------------------------------------------------------------------------- 1 | # [qc.Dropdown](CDropdown.md)#show 2 | 3 | ## 原型 4 | * void show() 5 | 6 | ## 描述 7 | 显示下拉框列表。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/images/imageExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/api/gameobject/images/imageExample.png -------------------------------------------------------------------------------- /zh/api/gameobject/node_destroy.md: -------------------------------------------------------------------------------- 1 | # [qc.Node](CNode.md).destroy 2 | 3 | ## 原型 4 | * void destroy(void) 5 | 6 | ## 描述 7 | 销毁本对象(节点先隐藏掉,下一帧才会真正被析构并回收资源)。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/node_destroyImmediately.md: -------------------------------------------------------------------------------- 1 | # [qc.Node](CNode.md).destroyImmediately 2 | 3 | ## 原型 4 | * void destroyImmediately(void) 5 | 6 | ## 描述 7 | 立刻销毁本节点(不推荐使用)。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/node_getWorldBox.md: -------------------------------------------------------------------------------- 1 | # [qc.Node](CNode.md).getWorldBox 2 | 3 | ## 原型 4 | qc.Rectangle getWorldBox() 5 | 6 | ## 描述 7 | 获取节点在世界坐标的包围盒。 8 | 9 | -------------------------------------------------------------------------------- /zh/api/gameobject/node_getWorldCorners.md: -------------------------------------------------------------------------------- 1 | # [qc.Node](CNode.md).getWorldCorners 2 | 3 | ## 原型 4 | void getWorldCorners() 5 | 6 | ## 描述 7 | 获取节点在世界坐标中的四个角。 8 | 9 | -------------------------------------------------------------------------------- /zh/api/gameobject/node_getWorldPosition.md: -------------------------------------------------------------------------------- 1 | # [qc.Node](CNode.md).getWorldPosition 2 | 3 | ## 原型 4 | * [qc.Point](../geom/Point.md) getWorldPosition(void) 5 | 6 | ## 描述 7 | 获取节点的世界坐标。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/node_getWorldScale.md: -------------------------------------------------------------------------------- 1 | # [qc.Node](CNode.md).getWorldScale 2 | 3 | ## 原型 4 | * [qc.Point](../geom/Point.md) getWorldScale(void) 5 | 6 | ## 描述 7 | 获取节点在全局坐标系中的缩放。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/node_removeChildren.md: -------------------------------------------------------------------------------- 1 | # [qc.Node](CNode.md).removeChildren 2 | 3 | ## 原型 4 | * void removeChildren(void) 5 | 6 | ## 描述 7 | 移除所有的孩子节点。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/sound_pause.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).pause 2 | 3 | ## 原型 4 | * void pause(void) 5 | 6 | ## 描述 7 | 暂停声音播放 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/sound_play.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).play 2 | 3 | ## 原型 4 | * void play(void) 5 | 6 | ## 描述 7 | 播放当前 qc.sound 组件的声音。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/sound_removeMarker.md: -------------------------------------------------------------------------------- 1 | # [qc.Sound](sound.md).removeMarker 2 | 3 | ## 原型 4 | * void removeMarker() 5 | 6 | # 参数 7 | 无 8 | 9 | ## 描述 10 | 移除播放标记 11 | -------------------------------------------------------------------------------- /zh/api/gameobject/sound_resume.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).resume 2 | 3 | ## 原型 4 | * void resume(void) 5 | 6 | ## 描述 7 | 继续播放声音。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/sound_stop.md: -------------------------------------------------------------------------------- 1 | # [qc.sound](sound.md).stop 2 | 3 | ## 原型 4 | * void stop(void) 5 | 6 | ## 描述 7 | 停止播放声音。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/sprite_resetNativeSize.md: -------------------------------------------------------------------------------- 1 | # [qc.Sprite](CSprite.md).resetNativeSize 2 | 3 | ## 原型 4 | * void resetNativeSize(void) 5 | 6 | ## 描述 7 | 根据当前选择的图片,设置 Sprite 大小为图片不缩放时的原始大小。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/sprite_stop.md: -------------------------------------------------------------------------------- 1 | # [qc.Sprite](CSprite.md).stop 2 | 3 | ## 原型 4 | * void stop(void) 5 | 6 | ## 描述 7 | 停止当前动作的播放。 8 | -------------------------------------------------------------------------------- /zh/api/gameobject/tilemap_resetNativeSize.md: -------------------------------------------------------------------------------- 1 | # [qc.Tilemap](CTilemap.md).resetNativeSize 2 | 3 | ## 原型 4 | * void resetNativeSize() 5 | 6 | ## 描述 7 | 重置地图为原始大小 8 | -------------------------------------------------------------------------------- /zh/api/input/BaseInputModule.md: -------------------------------------------------------------------------------- 1 | # qc.BaseInputModule 2 | 3 | ## 描述 4 | 输入的事件处理模块。可以通过game.input.module访问本模块实例。 5 | 目前来看,开发者不需要了解本模块的处理。 6 | -------------------------------------------------------------------------------- /zh/api/input/DragEvent.md: -------------------------------------------------------------------------------- 1 | # qc.DragEvent 2 | inherit [qc.PointerEvent](PointerEvent.md) 3 | 4 | ## 描述 5 | 拖拽事件描述 6 | -------------------------------------------------------------------------------- /zh/api/input/Input_hasCursor.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).hasCursor 2 | ## 原型 3 | * boolean hasCursor(void); 4 | 5 | ## 说明 6 | 当前环境中是否有鼠标存在 7 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAltDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAltDown 2 | ## 原型 3 | * boolean isAltDown(void); 4 | 5 | ## 说明 6 | 功能键Alt是否被按下 7 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAnyKey.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyKey 2 | 同:[qc.Keyboard.isAnyKey](Keyboard_isAnyKey.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAnyKeyDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyKeyDown 2 | 同:[qc.Keyboard.isAnyKeyDown](Keyboard_isAnyKeyDown.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAnyMouse.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyMouse 2 | 同:[qc.Mouse.isAnyMouse](Mouse_isAnyMouse.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAnyMouseDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyMouseDown 2 | 同:[qc.Mouse.isAnyMouseDown](Mouse_isAnyMouseDown.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAnyPointer.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyPointer 2 | 见:[qc.Mouse.isAnyMouse](Mouse_isAnyMouse.md) 和 [qc.Touch.isAnyTouch](Touch_isAnyTouch.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAnyTouch.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyTouch 2 | 同:[qc.Touch.isAnyTouch](Touch_isAnyTouch.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isAnyTouchStart.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isAnyTouchStart 2 | 同:[qc.Touch.isAnyTouchStart](Touch_isAnyTouchStart.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isControlDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isControlDown 2 | ## 原型 3 | * boolean isControlDown(void); 4 | 5 | ## 说明 6 | 功能键Control是否处于被按下状态 7 | -------------------------------------------------------------------------------- /zh/api/input/Input_isKeyDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isKeyDown 2 | 同:[qc.Keyboard.isKeyDown](Keyboard_isKeyDown.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isMetaDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isMetaDown 2 | ## 原型 3 | * boolean isMetaDown(void); 4 | 5 | ## 说明 6 | 功能键Meta是否处于被按下的状态 7 | -------------------------------------------------------------------------------- /zh/api/input/Input_isMouseDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isMouseDown 2 | 同:[qc.Mouse.isMouseDown](Mouse_isMouseDown.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/Input_isPointerStart.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isPointerStart 2 | 见:[qc.Mouse.isMouseDown](Mouse_isMouseDown.md) 和 [qc.Touch.isTouchStart](Touch_isTouchStart.md) 3 | 4 | -------------------------------------------------------------------------------- /zh/api/input/Input_isShiftDown.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isShiftDown 2 | ## 原型 3 | * boolean isShiftDown(void); 4 | 5 | ## 说明 6 | 功能键Shift是否处于被按下的状态 7 | -------------------------------------------------------------------------------- /zh/api/input/Input_isTouchStart.md: -------------------------------------------------------------------------------- 1 | # [qc.Input](Input.md).isTouchStart 2 | 同:[qc.Touch.isTouchStart](Touch_isTouchStart.md) 3 | -------------------------------------------------------------------------------- /zh/api/input/PointerEvent.md: -------------------------------------------------------------------------------- 1 | # qc.PointerEvent 2 | inherit [qc.BaseInputEvent](BaseInputEvent.md) 3 | 4 | ## 描述 5 | 点击移动事件描述 6 | -------------------------------------------------------------------------------- /zh/api/input/Touch_getTouchByDeviceId.md: -------------------------------------------------------------------------------- 1 | # [qc.Touch](Touch.md).getTouchByDeviceId 2 | 3 | ## 原型 4 | * qc.Pointer getTouchByDeviceId(id:int) 5 | 6 | ## 说明 7 | 通过设备Id获得点事件 8 | -------------------------------------------------------------------------------- /zh/api/input/Touch_getTouchById.md: -------------------------------------------------------------------------------- 1 | # [qc.Touch](Touch.md).getTouchById 2 | 3 | ## 原型 4 | * qc.Pointer getTouchById(id:int) 5 | 6 | ## 说明 7 | 通过Id获得点事件 8 | -------------------------------------------------------------------------------- /zh/api/officialplugins/arcade/rigidbody/reset.md: -------------------------------------------------------------------------------- 1 | # [qc.arcade.RigidBody](../RigidBody.md).reset 2 | 3 | ## 原型 4 | * void reset() 5 | 6 | ## 说明 7 | 重置刚体的数据 8 | 9 | -------------------------------------------------------------------------------- /zh/api/officialplugins/baiduAd/BaiduAd.md: -------------------------------------------------------------------------------- 1 | # 百度广告插件 2 | 3 | * [BannerAd](BannerAd.md):用于在游戏页面的顶部或底部显示横幅广告 4 | * [PopupAd](PopupAd.md):用于在游戏页面中显示弹出式广告 5 | -------------------------------------------------------------------------------- /zh/api/officialplugins/particleSystem/methods/pause.md: -------------------------------------------------------------------------------- 1 | # [qc.ParticleSystem](../CParticleSystem.md).pause 2 | 3 | ## Prototype 4 | * void pause() 5 | 6 | ## Description 7 | 暂停粒子系统。 8 | 9 | -------------------------------------------------------------------------------- /zh/api/officialplugins/particleSystem/methods/reset.md: -------------------------------------------------------------------------------- 1 | # [qc.ParticleSystem](../CParticleSystem.md).reset 2 | 3 | ## Prototype 4 | * void reset() 5 | 6 | ## Description 7 | 重置粒子发射器。 8 | 9 | -------------------------------------------------------------------------------- /zh/api/plugin/removeAll.md: -------------------------------------------------------------------------------- 1 | # [qc.PluginManager](README.md).removeAll 2 | 3 | ## 原型 4 | * void removeAll() 5 | 6 | ## 说明 7 | 移除所有的插件 8 | -------------------------------------------------------------------------------- /zh/api/signal/dispatch.md: -------------------------------------------------------------------------------- 1 | # [qc.Signal](README.md).dispatch 2 | 3 | ## 原型 4 | * void dispatch(params...); 5 | 6 | ## 说明 7 | 事件广播,参数会在事件监听回调中被带回 8 | -------------------------------------------------------------------------------- /zh/api/signal/removeAll.md: -------------------------------------------------------------------------------- 1 | # [qc.Signal](README.md).removeAll 2 | 3 | ## 原型 4 | * void removeAll(); 5 | 6 | ## 说明 7 | 清空所有的事件监听 8 | -------------------------------------------------------------------------------- /zh/api/signalbinding/README.md: -------------------------------------------------------------------------------- 1 | # qc.SignalBinding 2 | 3 | ## 描述 4 | 描述监听函数与事件的绑定关系。 5 | -------------------------------------------------------------------------------- /zh/api/storage/del.md: -------------------------------------------------------------------------------- 1 | # [qc.Storage](README.md).del 2 | 3 | ## 原型 4 | * void del(string key); 5 | 6 | ## 说明 7 | 删除某个字段 -------------------------------------------------------------------------------- /zh/api/storage/restore.md: -------------------------------------------------------------------------------- 1 | # [qc.Storage](README.md).restore 2 | 3 | ## 原型 4 | * void restore(void) 5 | 6 | ## 说明 7 | 读取所有的存盘数据(模块实例化时会自动调用) 8 | -------------------------------------------------------------------------------- /zh/api/storage/save.md: -------------------------------------------------------------------------------- 1 | # [qc.Storage](README.md).save 2 | 3 | ## 原型 4 | * void save() 5 | 6 | ## 说明 7 | 所有数据存盘操作。调用set、del函数后,只是在内存中修改了数据。save函数可以将内存的数据进行存盘。 -------------------------------------------------------------------------------- /zh/api/togglegroup/add.md: -------------------------------------------------------------------------------- 1 | # add 2 | -------------------------------------------------------------------------------- /zh/api/togglegroup/remove.md: -------------------------------------------------------------------------------- 1 | # remove 2 | -------------------------------------------------------------------------------- /zh/api/tween/stop.md: -------------------------------------------------------------------------------- 1 | # [qc.Tween](../components/Tween.md).stop 2 | 3 | ## 原型 4 | * void stop() 5 | 6 | ## 说明 7 | 停止动作播放 8 | 9 | -------------------------------------------------------------------------------- /zh/api/tween/stopGroup.md: -------------------------------------------------------------------------------- 1 | # [qc.Tween](../components/Tween.md).stopGroup 2 | 3 | ## 原型 4 | * void stopGroup() 5 | 6 | ## 说明 7 | 停止一组动作播放 8 | 9 | -------------------------------------------------------------------------------- /zh/manual/Action/image/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/action.png -------------------------------------------------------------------------------- /zh/manual/Action/image/actionFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/actionFile.png -------------------------------------------------------------------------------- /zh/manual/Action/image/actionList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/actionList.png -------------------------------------------------------------------------------- /zh/manual/Action/image/actionView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/actionView.png -------------------------------------------------------------------------------- /zh/manual/Action/image/addAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/addAction.png -------------------------------------------------------------------------------- /zh/manual/Action/image/addProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/addProperty.png -------------------------------------------------------------------------------- /zh/manual/Action/image/amFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/amFile.png -------------------------------------------------------------------------------- /zh/manual/Action/image/amInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/amInfo.png -------------------------------------------------------------------------------- /zh/manual/Action/image/amNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/amNode.png -------------------------------------------------------------------------------- /zh/manual/Action/image/amPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/amPreview.png -------------------------------------------------------------------------------- /zh/manual/Action/image/amTimeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/amTimeline.png -------------------------------------------------------------------------------- /zh/manual/Action/image/animator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/animator.png -------------------------------------------------------------------------------- /zh/manual/Action/image/blueKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/blueKeys.png -------------------------------------------------------------------------------- /zh/manual/Action/image/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/buttons.png -------------------------------------------------------------------------------- /zh/manual/Action/image/curveEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/curveEditor.png -------------------------------------------------------------------------------- /zh/manual/Action/image/curvePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/curvePanel.png -------------------------------------------------------------------------------- /zh/manual/Action/image/customProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/customProperty.png -------------------------------------------------------------------------------- /zh/manual/Action/image/eventLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/eventLine.png -------------------------------------------------------------------------------- /zh/manual/Action/image/eventPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/eventPanel.png -------------------------------------------------------------------------------- /zh/manual/Action/image/frameView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/frameView.png -------------------------------------------------------------------------------- /zh/manual/Action/image/loopAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/loopAction.png -------------------------------------------------------------------------------- /zh/manual/Action/image/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/preview.png -------------------------------------------------------------------------------- /zh/manual/Action/image/propertyList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/propertyList.png -------------------------------------------------------------------------------- /zh/manual/Action/image/propertymenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/propertymenu.png -------------------------------------------------------------------------------- /zh/manual/Action/image/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/record.png -------------------------------------------------------------------------------- /zh/manual/Action/image/relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/relative.png -------------------------------------------------------------------------------- /zh/manual/Action/image/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/texture.png -------------------------------------------------------------------------------- /zh/manual/Action/image/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/timeline.png -------------------------------------------------------------------------------- /zh/manual/Action/image/tweenAbsolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/tweenAbsolute.png -------------------------------------------------------------------------------- /zh/manual/Action/image/tweenRelative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/tweenRelative.png -------------------------------------------------------------------------------- /zh/manual/Action/image/valueField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Action/image/valueField.png -------------------------------------------------------------------------------- /zh/manual/AssetsLoad/images/ref_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/AssetsLoad/images/ref_font.png -------------------------------------------------------------------------------- /zh/manual/AssetsLoad/images/ref_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/AssetsLoad/images/ref_image.png -------------------------------------------------------------------------------- /zh/manual/AssetsLoad/images/ref_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/AssetsLoad/images/ref_sound.png -------------------------------------------------------------------------------- /zh/manual/Atlas/images/add.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Atlas/images/add.jpeg -------------------------------------------------------------------------------- /zh/manual/Atlas/images/atlas.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Atlas/images/atlas.jpeg -------------------------------------------------------------------------------- /zh/manual/Atlas/images/atlas_folder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Atlas/images/atlas_folder.jpeg -------------------------------------------------------------------------------- /zh/manual/Atlas/images/repack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Atlas/images/repack.png -------------------------------------------------------------------------------- /zh/manual/Behaviour/images/ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Behaviour/images/ab.png -------------------------------------------------------------------------------- /zh/manual/Behaviour/images/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Behaviour/images/disabled.png -------------------------------------------------------------------------------- /zh/manual/Behaviour/images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Behaviour/images/result.png -------------------------------------------------------------------------------- /zh/manual/BitmapFont/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/BitmapFont/images/code.png -------------------------------------------------------------------------------- /zh/manual/BitmapFont/images/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/BitmapFont/images/font.png -------------------------------------------------------------------------------- /zh/manual/BitmapFont/images/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/BitmapFont/images/images.png -------------------------------------------------------------------------------- /zh/manual/BitmapFont/images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/BitmapFont/images/options.png -------------------------------------------------------------------------------- /zh/manual/BitmapFont/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/BitmapFont/images/settings.png -------------------------------------------------------------------------------- /zh/manual/BitmapFont/images/unicode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/BitmapFont/images/unicode.png -------------------------------------------------------------------------------- /zh/manual/BuildinComponents/README.md: -------------------------------------------------------------------------------- 1 | # 其他内置组件 2 | 3 | * [转换行为](TransitionBehaviour.html) 4 | * [节点图片缓存](CacheAsBitmap.html) 5 | * [调试信息](DebugViewer.html) 6 | * [节点遮罩](NodeMask.html) -------------------------------------------------------------------------------- /zh/manual/ComponentMenu/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/ComponentMenu/images/1.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/chrome.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/console1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/console1.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/console2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/console2.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/console3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/console3.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/console4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/console4.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/console5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/console5.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/console6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/console6.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/debug2.png -------------------------------------------------------------------------------- /zh/manual/Debug/images/debug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Debug/images/debug3.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/1.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/2.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/3.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/4.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/5.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/6.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/7.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/8.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/9.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/i1.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/i2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/i2.png -------------------------------------------------------------------------------- /zh/manual/DragonBone/images/i3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/DragonBone/images/i3.png -------------------------------------------------------------------------------- /zh/manual/Excel/images/excel1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Excel/images/excel1.jpeg -------------------------------------------------------------------------------- /zh/manual/Excel/images/excel2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Excel/images/excel2.jpeg -------------------------------------------------------------------------------- /zh/manual/Excel/images/excel3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Excel/images/excel3.jpeg -------------------------------------------------------------------------------- /zh/manual/ExtendEditor/README.md: -------------------------------------------------------------------------------- 1 | # 编辑器扩展 2 | 1. 所有编辑器扩展的代码,必须放到Assets/Editor目录中,否则将不会被执行 3 | 2. 添加编辑器代码后,需要刷新页面代码才能起效 4 | -------------------------------------------------------------------------------- /zh/manual/ExtendEditor/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/ExtendEditor/images/button.png -------------------------------------------------------------------------------- /zh/manual/ExtendEditor/images/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/ExtendEditor/images/label.png -------------------------------------------------------------------------------- /zh/manual/ExtendEditor/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/ExtendEditor/images/line.png -------------------------------------------------------------------------------- /zh/manual/ExtendEditor/images/menu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/ExtendEditor/images/menu.jpeg -------------------------------------------------------------------------------- /zh/manual/ExtendEditor/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/ExtendEditor/images/text.png -------------------------------------------------------------------------------- /zh/manual/ExtendEditor/images/text1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/ExtendEditor/images/text1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/addfilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/addfilters.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/alphamask1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/alphamask1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/alphamask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/alphamask2.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/blend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/blend1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/blend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/blend2.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/blurx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/blurx1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/blurx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/blurx2.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/blury1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/blury1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/blury2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/blury2.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/filtergroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/filtergroup.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/gray1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/gray1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/gray2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/gray2.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/highlight1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/highlight1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/highlight2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/highlight2.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/keepsource1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/keepsource1.png -------------------------------------------------------------------------------- /zh/manual/Filter/images/keepsource2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Filter/images/keepsource2.png -------------------------------------------------------------------------------- /zh/manual/Input/images/input1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Input/images/input1.png -------------------------------------------------------------------------------- /zh/manual/Input/images/input2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Input/images/input2.png -------------------------------------------------------------------------------- /zh/manual/Input/images/input3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Input/images/input3.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/above.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/button.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/child.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/dom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/dom.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/emitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/emitter.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/grid.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/hierarchy.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/image.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/interface.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/iphone.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/list.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/main_menu.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/move.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/move.jpeg -------------------------------------------------------------------------------- /zh/manual/Interface/images/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/node.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/project.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/run.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/scale.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/scale.jpeg -------------------------------------------------------------------------------- /zh/manual/Interface/images/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/scene.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/scrollbar.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/size.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/size.jpeg -------------------------------------------------------------------------------- /zh/manual/Interface/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/slider.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/sound.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/sprite.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/text.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/tilemap.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/toggle.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/toolbar.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/transform.png -------------------------------------------------------------------------------- /zh/manual/Interface/images/under.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Interface/images/under.png -------------------------------------------------------------------------------- /zh/manual/LoadingPrefab/README.md: -------------------------------------------------------------------------------- 1 | # 加载界面 2 | 3 | 游戏中的加载界面分为两种:[启动加载界面](loading.md)、[场景加载界面](loadingPrefab.md)。 4 | 5 | * [启动加载界面](loading.md) 6 | * [场景加载界面](loadingPrefab.md) 7 | -------------------------------------------------------------------------------- /zh/manual/LoadingPrefab/images/clue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/LoadingPrefab/images/clue.png -------------------------------------------------------------------------------- /zh/manual/LoadingPrefab/images/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/LoadingPrefab/images/svg.png -------------------------------------------------------------------------------- /zh/manual/NinePatch/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/NinePatch/images/button.png -------------------------------------------------------------------------------- /zh/manual/Overview/Install.md: -------------------------------------------------------------------------------- 1 | # 安装 2 | * [Windows系统](WindowsInstall.md) 3 | * [Mac OS X系统](MacInstall.md) 4 | -------------------------------------------------------------------------------- /zh/manual/Overview/images/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Overview/images/port.png -------------------------------------------------------------------------------- /zh/manual/Overview/images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Overview/images/project.png -------------------------------------------------------------------------------- /zh/manual/Overview/images/start.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Overview/images/start.jpeg -------------------------------------------------------------------------------- /zh/manual/Overview/images/startMac.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Overview/images/startMac.jpeg -------------------------------------------------------------------------------- /zh/manual/Plugin/images/ad_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/ad_code.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/ad_htmls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/ad_htmls.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/add.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/collide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/collide1.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/origin_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/origin_ui.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/overflow.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/richtext_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/richtext_all.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/richtext_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/richtext_h1.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/richtext_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/richtext_s.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/rigidbody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/rigidbody.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/serverComm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/serverComm.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/unoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/unoverflow.png -------------------------------------------------------------------------------- /zh/manual/Plugin/images/wechat_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/images/wechat_php.png -------------------------------------------------------------------------------- /zh/manual/Plugin/server.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Plugin/server.zip -------------------------------------------------------------------------------- /zh/manual/Prefab/images/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Prefab/images/alt.png -------------------------------------------------------------------------------- /zh/manual/Prefab/images/ani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Prefab/images/ani.png -------------------------------------------------------------------------------- /zh/manual/Prefab/images/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Prefab/images/apply.png -------------------------------------------------------------------------------- /zh/manual/Prefab/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Prefab/images/background.png -------------------------------------------------------------------------------- /zh/manual/Prefab/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Prefab/images/edit.png -------------------------------------------------------------------------------- /zh/manual/Prefab/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Prefab/images/save.png -------------------------------------------------------------------------------- /zh/manual/Prefab/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Prefab/images/text.png -------------------------------------------------------------------------------- /zh/manual/Project/images/create1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Project/images/create1.jpeg -------------------------------------------------------------------------------- /zh/manual/Project/images/create2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Project/images/create2.jpeg -------------------------------------------------------------------------------- /zh/manual/Project/images/create3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Project/images/create3.jpeg -------------------------------------------------------------------------------- /zh/manual/Project/images/open.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Project/images/open.jpeg -------------------------------------------------------------------------------- /zh/manual/Project/images/switch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Project/images/switch.jpeg -------------------------------------------------------------------------------- /zh/manual/Publish/images/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Publish/images/publish.png -------------------------------------------------------------------------------- /zh/manual/Sample/LayoutComponents.md: -------------------------------------------------------------------------------- 1 | # 布局相关组件 2 | 本章节介绍和界面布局相关的脚本组件: 3 | 4 | * [宽高比适配器](AspectRatioFitter.html) 5 | * [表格布局](TableLayout.html) 6 | * [水平布局与垂直布局](AxisLayout.html) -------------------------------------------------------------------------------- /zh/manual/Sample/images/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/button1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/button2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/button3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/button3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/dom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/dom.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/dropdown1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/dropdown1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/dropdown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/dropdown2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/dropdown3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/dropdown3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/inputfield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/inputfield1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/inputfield2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/inputfield2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_4.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_5.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_6.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_7.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/node_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/node_8.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/progressbar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/progressbar1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/progressbar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/progressbar2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/progressbar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/progressbar3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/progressbar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/progressbar4.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/progressbar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/progressbar5.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/scroll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/scroll1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/scroll2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/scroll2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/scroll3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/scroll3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/scroll4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/scroll4.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/slider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/slider1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/slider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/slider2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/sprite1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/sprite1.jpeg -------------------------------------------------------------------------------- /zh/manual/Sample/images/sprite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/sprite2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/sprite_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/sprite_0.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/sprite_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/sprite_1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/sprite_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/sprite_2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/sprite_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/sprite_3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/sprite_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/sprite_4.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/text1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/text1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/text2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/text2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/text3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/text3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/text4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/text4.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/text5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/text5.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/text6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/text6.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/tiled.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/tilemap.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/toggle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/toggle1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/toggle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/toggle2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/toggle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/toggle3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/toggle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/toggle4.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/uiimage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/uiimage1.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/uiimage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/uiimage2.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/uiimage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/uiimage3.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/uiimage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/uiimage4.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/uiimage5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/uiimage5.png -------------------------------------------------------------------------------- /zh/manual/Sample/images/uiimage6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sample/images/uiimage6.png -------------------------------------------------------------------------------- /zh/manual/Scripts/images/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Scripts/images/drag.png -------------------------------------------------------------------------------- /zh/manual/Settings/images/dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Settings/images/dnd.png -------------------------------------------------------------------------------- /zh/manual/Settings/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Settings/images/settings.png -------------------------------------------------------------------------------- /zh/manual/Sound/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Sound/images/sound.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/curvelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/curvelist.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/curvesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/curvesave.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tween.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tweenFunc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tweenFunc.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tweenFuncAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tweenFuncAdd.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tweencolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tweencolor.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tweendom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tweendom.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tweengroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tweengroup.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tweenkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tweenkey.png -------------------------------------------------------------------------------- /zh/manual/Tween/images/tweenscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Tween/images/tweenscale.png -------------------------------------------------------------------------------- /zh/manual/TypeScript/images/init.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/TypeScript/images/init.jpeg -------------------------------------------------------------------------------- /zh/manual/UI/README.md: -------------------------------------------------------------------------------- 1 | # 界面与组件 2 | 本章节将对整个UI界面系统的基础使用做个介绍。首先介绍Transform和Rect Transform布局机制和工具使用,然后介绍可视化组件如文字和图片,以及可交互组件如按钮和拉条等。 3 | ![](images/ui.png) 4 | -------------------------------------------------------------------------------- /zh/manual/UI/images/anchor_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchor_center.gif -------------------------------------------------------------------------------- /zh/manual/UI/images/anchor_corner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchor_corner.gif -------------------------------------------------------------------------------- /zh/manual/UI/images/anchor_pos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchor_pos.gif -------------------------------------------------------------------------------- /zh/manual/UI/images/anchor_presets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchor_presets.png -------------------------------------------------------------------------------- /zh/manual/UI/images/anchor_stretch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchor_stretch.gif -------------------------------------------------------------------------------- /zh/manual/UI/images/anchoredx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchoredx.png -------------------------------------------------------------------------------- /zh/manual/UI/images/anchoredxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchoredxy.png -------------------------------------------------------------------------------- /zh/manual/UI/images/anchoredy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/anchoredy.png -------------------------------------------------------------------------------- /zh/manual/UI/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/move.png -------------------------------------------------------------------------------- /zh/manual/UI/images/pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/pivot.png -------------------------------------------------------------------------------- /zh/manual/UI/images/position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/position.png -------------------------------------------------------------------------------- /zh/manual/UI/images/preset_button.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/preset_button.jpeg -------------------------------------------------------------------------------- /zh/manual/UI/images/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/rect.png -------------------------------------------------------------------------------- /zh/manual/UI/images/rect_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/rect_tool.png -------------------------------------------------------------------------------- /zh/manual/UI/images/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/rotate.png -------------------------------------------------------------------------------- /zh/manual/UI/images/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/rotation.png -------------------------------------------------------------------------------- /zh/manual/UI/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/scale.png -------------------------------------------------------------------------------- /zh/manual/UI/images/scale_adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/scale_adapter.png -------------------------------------------------------------------------------- /zh/manual/UI/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/size.png -------------------------------------------------------------------------------- /zh/manual/UI/images/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/transform.png -------------------------------------------------------------------------------- /zh/manual/UI/images/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/ui.png -------------------------------------------------------------------------------- /zh/manual/UI/images/x_anchoredX.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/x_anchoredX.jpeg -------------------------------------------------------------------------------- /zh/manual/UI/images/xywh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/UI/images/xywh.png -------------------------------------------------------------------------------- /zh/manual/WebFont/images/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/WebFont/images/font.png -------------------------------------------------------------------------------- /zh/manual/WebFont/images/oper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/WebFont/images/oper.png -------------------------------------------------------------------------------- /zh/manual/WebFont/images/webfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/WebFont/images/webfont.png -------------------------------------------------------------------------------- /zh/manual/Wechat/images/mainDomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Wechat/images/mainDomain.png -------------------------------------------------------------------------------- /zh/manual/Wechat/images/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Wechat/images/publish.png -------------------------------------------------------------------------------- /zh/manual/Wechat/images/subDomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Wechat/images/subDomain.png -------------------------------------------------------------------------------- /zh/manual/Wechat/images/subPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/Wechat/images/subPackage.png -------------------------------------------------------------------------------- /zh/manual/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/images/preview.png -------------------------------------------------------------------------------- /zh/manual/images/techstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/images/techstack.png -------------------------------------------------------------------------------- /zh/manual/video/add_atlas.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/add_atlas.mp4 -------------------------------------------------------------------------------- /zh/manual/video/add_script_to_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/add_script_to_node.mp4 -------------------------------------------------------------------------------- /zh/manual/video/add_state.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/add_state.mp4 -------------------------------------------------------------------------------- /zh/manual/video/change_settings.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/change_settings.mp4 -------------------------------------------------------------------------------- /zh/manual/video/create_new_scene.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/create_new_scene.mp4 -------------------------------------------------------------------------------- /zh/manual/video/create_prefab.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/create_prefab.mp4 -------------------------------------------------------------------------------- /zh/manual/video/create_project.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/create_project.mp4 -------------------------------------------------------------------------------- /zh/manual/video/heartPath.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/heartPath.mp4 -------------------------------------------------------------------------------- /zh/manual/video/import_dragonbone1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/import_dragonbone1.mp4 -------------------------------------------------------------------------------- /zh/manual/video/import_dragonbone2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/import_dragonbone2.mp4 -------------------------------------------------------------------------------- /zh/manual/video/open_project.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/open_project.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_button.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_button.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_dom.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_dom.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_graphics.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_graphics.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_move_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_move_node.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_node.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_scale_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_scale_node.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_scrollview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_scrollview.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_size_node.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_size_node.mp4 -------------------------------------------------------------------------------- /zh/manual/video/oper_uiimage.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/oper_uiimage.mp4 -------------------------------------------------------------------------------- /zh/manual/video/plugin_arcade.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/plugin_arcade.mp4 -------------------------------------------------------------------------------- /zh/manual/video/sampled_dragonbone.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/sampled_dragonbone.mp4 -------------------------------------------------------------------------------- /zh/manual/video/set_nine_patch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/set_nine_patch.mp4 -------------------------------------------------------------------------------- /zh/manual/video/set_scripts_dep.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/set_scripts_dep.mp4 -------------------------------------------------------------------------------- /zh/manual/video/switch_project.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/switch_project.mp4 -------------------------------------------------------------------------------- /zh/manual/video/switch_state.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/switch_state.mp4 -------------------------------------------------------------------------------- /zh/manual/video/tilemap.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiciengine/qiciengine-documentation/e6c5c3c1d5eb4f7f120bdab8f7cc2c797a82905d/zh/manual/video/tilemap.mp4 --------------------------------------------------------------------------------