├── .gitignore ├── .gitmodules ├── Bindings ├── .gitignore ├── Android │ ├── DroidPlatformInitializer.cs │ ├── FullscreenUrhoActivity.cs │ ├── Metadata.xml │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── Resource.Designer.cs │ ├── Urho.Droid.CoreAR │ │ ├── Additions │ │ │ └── AboutAdditions.txt │ │ ├── Jars │ │ │ └── AboutJars.txt │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Transforms │ │ │ ├── EnumFields.xml │ │ │ ├── EnumMethods.xml │ │ │ └── Metadata.xml │ │ ├── Urho.Droid.CoreAR.csproj │ │ └── core-1.1.0.aar │ ├── Urho.Droid.GoogleVR │ │ ├── Additions │ │ │ └── AboutAdditions.txt │ │ ├── Jars │ │ │ └── AboutJars.txt │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Transforms │ │ │ ├── EnumFields.xml │ │ │ ├── EnumMethods.xml │ │ │ └── Metadata.xml │ │ ├── Urho.Droid.GoogleVR.csproj │ │ └── library-release.aar │ ├── Urho.Droid.SdlBinding │ │ ├── Metadata.xml │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Urho.Droid.SdlBinding.csproj │ │ └── urhosdl-release.aar │ └── UrhoSurface.cs ├── Desktop │ └── DesktopUrhoInitializer.cs ├── Forms.Droid │ └── AndroidSurfaceRenderer.cs ├── Forms.UWP │ └── UwpSurfaceRenderer.cs ├── Forms.iOS │ ├── ApiDefinition.cs │ ├── IosSurfaceRenderer.cs │ ├── StructsAndEnums.cs │ └── Urho.framework.linkwith.cs ├── Forms │ ├── UrhoSharp.Forms.csproj │ └── UrhoSurface.cs ├── Native │ ├── AllUrho.h │ ├── ApplicationProxy.cpp │ ├── ApplicationProxy.h │ ├── all-urho.cpp │ ├── asserts.h │ ├── asserts_32.h │ ├── asserts_64.h │ ├── glue.cpp │ ├── glue.h │ ├── interop.h │ └── vector.cpp ├── NetCore │ └── NetCoreUrhoInitializer.cs ├── NetStandard │ └── UrhoSharp.csproj ├── ParseEvents.pl ├── Portable │ ├── Actions │ │ ├── ActionManager.cs │ │ ├── AsyncCompletionCallFunc.cs │ │ ├── Base │ │ │ ├── Action.cs │ │ │ ├── AmplitudeAction.cs │ │ │ ├── FiniteTimeAction.cs │ │ │ └── Speed.cs │ │ ├── Ease │ │ │ ├── ActionEase.cs │ │ │ ├── EaseBackIn.cs │ │ │ ├── EaseBackInOut.cs │ │ │ ├── EaseBackOut.cs │ │ │ ├── EaseBounceIn.cs │ │ │ ├── EaseBounceInOut.cs │ │ │ ├── EaseBounceOut.cs │ │ │ ├── EaseCustom.cs │ │ │ ├── EaseElastic.cs │ │ │ ├── EaseElasticIn.cs │ │ │ ├── EaseElasticInOut.cs │ │ │ ├── EaseElasticOut.cs │ │ │ ├── EaseExponentialIn.cs │ │ │ ├── EaseExponentialInOut.cs │ │ │ ├── EaseExponentialOut.cs │ │ │ ├── EaseIn.cs │ │ │ ├── EaseInOut.cs │ │ │ ├── EaseOut.cs │ │ │ ├── EaseRateAction.cs │ │ │ ├── EaseSineIn.cs │ │ │ ├── EaseSineInOut.cs │ │ │ └── EaseSineOut.cs │ │ ├── Instants │ │ │ ├── ActionInstant.cs │ │ │ ├── Callfunc │ │ │ │ ├── CallFunc.cs │ │ │ │ ├── CallFuncN.cs │ │ │ │ ├── CallFuncND.cs │ │ │ │ ├── CallFuncO.cs │ │ │ │ └── TaskSourceAction.cs │ │ │ ├── Hide.cs │ │ │ ├── Place.cs │ │ │ ├── RemoveSelf.cs │ │ │ ├── Show.cs │ │ │ └── ToggleVisibility.cs │ │ ├── Intervals │ │ │ ├── ActionTween.cs │ │ │ ├── BezierBy.cs │ │ │ ├── BezierTo.cs │ │ │ ├── Blink.cs │ │ │ ├── DelayTime.cs │ │ │ ├── ExtraAction.cs │ │ │ ├── FadeIn.cs │ │ │ ├── FadeOut.cs │ │ │ ├── FadeTo.cs │ │ │ ├── GenericShaderParameterFromTo.cs │ │ │ ├── JumpBy.cs │ │ │ ├── JumpTo.cs │ │ │ ├── MoveBy.cs │ │ │ ├── MoveTo.cs │ │ │ ├── Parallel.cs │ │ │ ├── Repeat.cs │ │ │ ├── RepeatForever.cs │ │ │ ├── ReverseTime.cs │ │ │ ├── RotateAroundBy.cs │ │ │ ├── RotateBy.cs │ │ │ ├── RotateTo.cs │ │ │ ├── ScaleBy.cs │ │ │ ├── ScaleTo.cs │ │ │ ├── Sequence.cs │ │ │ ├── Spawn.cs │ │ │ ├── TargetedAction.cs │ │ │ ├── TintBy.cs │ │ │ └── TintTo.cs │ │ └── Node.cs │ ├── Application.cs │ ├── ApplicationOptions.cs │ ├── AttributeInfo.cs │ ├── BillboardSet.cs │ ├── BufferedSoundStream.cs │ ├── Camera.cs │ ├── Collision.cs │ ├── Component.cs │ ├── Connection.cs │ ├── Consts.cs │ ├── Controls.cs │ ├── CoreData.cs │ ├── Enums.cs │ ├── External │ │ ├── IntVector2.cs │ │ ├── IntVector3.cs │ │ ├── MathHelper.cs │ │ ├── Matrix3.cs │ │ ├── Matrix4.cs │ │ ├── Plane.cs │ │ ├── Quaternion.cs │ │ ├── README.md │ │ ├── Vector2.cs │ │ ├── Vector3.cs │ │ └── Vector4.cs │ ├── File.cs │ ├── Frustum.cs │ ├── GPUObject.cs │ ├── Generated │ │ ├── Animatable.cs │ │ ├── AnimatedModel.cs │ │ ├── AnimatedSprite2D.cs │ │ ├── Animation.cs │ │ ├── AnimationBlendMode.cs │ │ ├── AnimationController.cs │ │ ├── AnimationSet2D.cs │ │ ├── AnimationState.cs │ │ ├── Application.cs │ │ ├── AreaAllocator.cs │ │ ├── AsyncLoadState.cs │ │ ├── AttributeAccessor.cs │ │ ├── AttributeAnimationInfo.cs │ │ ├── Audio.cs │ │ ├── AutoRemoveMode.cs │ │ ├── BillboardSet.cs │ │ ├── BlendMode.cs │ │ ├── BodyType2D.cs │ │ ├── BorderImage.cs │ │ ├── BufferedSoundStream.cs │ │ ├── Button.cs │ │ ├── CallbackType.cs │ │ ├── Camera.cs │ │ ├── CheckBox.cs │ │ ├── CollisionBox2D.cs │ │ ├── CollisionChain2D.cs │ │ ├── CollisionCircle2D.cs │ │ ├── CollisionEdge2D.cs │ │ ├── CollisionEventMode.cs │ │ ├── CollisionGeometryData.cs │ │ ├── CollisionPolygon2D.cs │ │ ├── CollisionShape.cs │ │ ├── CollisionShape2D.cs │ │ ├── CompareMode.cs │ │ ├── Component.cs │ │ ├── CompressedFormat.cs │ │ ├── Connection.cs │ │ ├── ConstantBuffer.cs │ │ ├── Constraint.cs │ │ ├── Constraint2D.cs │ │ ├── ConstraintDistance2D.cs │ │ ├── ConstraintFriction2D.cs │ │ ├── ConstraintGear2D.cs │ │ ├── ConstraintMotor2D.cs │ │ ├── ConstraintMouse2D.cs │ │ ├── ConstraintPrismatic2D.cs │ │ ├── ConstraintPulley2D.cs │ │ ├── ConstraintRevolute2D.cs │ │ ├── ConstraintRope2D.cs │ │ ├── ConstraintType.cs │ │ ├── ConstraintWeld2D.cs │ │ ├── ConstraintWheel2D.cs │ │ ├── Context.cs │ │ ├── ConvexData.cs │ │ ├── Corner.cs │ │ ├── CreateMode.cs │ │ ├── CrowdAgent.cs │ │ ├── CrowdAgentRequestedTarget.cs │ │ ├── CrowdAgentState.cs │ │ ├── CrowdAgentTargetState.cs │ │ ├── CrowdManager.cs │ │ ├── CubeMapFace.cs │ │ ├── CubeMapLayout.cs │ │ ├── CullMode.cs │ │ ├── Cursor.cs │ │ ├── CursorShape.cs │ │ ├── CurveType.cs │ │ ├── CustomGeometry.cs │ │ ├── DebugHud.cs │ │ ├── DebugRenderer.cs │ │ ├── DecalSet.cs │ │ ├── DeferredLightPSVariation.cs │ │ ├── DeferredLightVSVariation.cs │ │ ├── Drawable.cs │ │ ├── Drawable2D.cs │ │ ├── DropDownList.cs │ │ ├── DynamicNavigationMesh.cs │ │ ├── EmitterType.cs │ │ ├── EmitterType2D.cs │ │ ├── Engine.cs │ │ ├── EventReceiverGroup.cs │ │ ├── FONT_TYPE.cs │ │ ├── FaceCameraMode.cs │ │ ├── File.cs │ │ ├── FileMode.cs │ │ ├── FileSelector.cs │ │ ├── FileSystem.cs │ │ ├── FileWatcher.cs │ │ ├── FillMode.cs │ │ ├── FocusMode.cs │ │ ├── Font.cs │ │ ├── FontFace.cs │ │ ├── FontFaceBitmap.cs │ │ ├── FontFaceFreeType.cs │ │ ├── FontHintLevel.cs │ │ ├── FontType.cs │ │ ├── Frustum.cs │ │ ├── FrustumPlane.cs │ │ ├── GImpactMeshData.cs │ │ ├── GPUObject.cs │ │ ├── Geometry.cs │ │ ├── GeometryType.cs │ │ ├── Graphics.cs │ │ ├── HeightfieldData.cs │ │ ├── HighlightMode.cs │ │ ├── HorizontalAlignment.cs │ │ ├── HttpRequest.cs │ │ ├── HttpRequestState.cs │ │ ├── Image.cs │ │ ├── IndexBuffer.cs │ │ ├── Input.cs │ │ ├── InterpMethod.cs │ │ ├── InterpolationMode.cs │ │ ├── Intersection.cs │ │ ├── JsonFile.cs │ │ ├── JsonNumberType.cs │ │ ├── JsonValueType.cs │ │ ├── LayoutMode.cs │ │ ├── LegacyVertexElement.cs │ │ ├── Light.cs │ │ ├── LightPSVariation.cs │ │ ├── LightType.cs │ │ ├── LightVSVariation.cs │ │ ├── LineEdit.cs │ │ ├── ListView.cs │ │ ├── LoadMode.cs │ │ ├── Localization.cs │ │ ├── LockState.cs │ │ ├── Log.cs │ │ ├── LogicComponent.cs │ │ ├── LoopMode.cs │ │ ├── LoopMode2D.cs │ │ ├── Material.cs │ │ ├── Menu.cs │ │ ├── MessageBox.cs │ │ ├── Model.cs │ │ ├── MouseMode.cs │ │ ├── NavArea.cs │ │ ├── Navigable.cs │ │ ├── NavigationMesh.cs │ │ ├── NavigationPathPointFlag.cs │ │ ├── NavigationPushiness.cs │ │ ├── NavigationQuality.cs │ │ ├── NavmeshPartitionType.cs │ │ ├── Network.cs │ │ ├── NetworkPriority.cs │ │ ├── Node.cs │ │ ├── Object.Events.cs │ │ ├── ObjectAnimation.cs │ │ ├── ObjectFactory.cs │ │ ├── ObjectType.cs │ │ ├── ObserverPositionSendMode.cs │ │ ├── Obstacle.cs │ │ ├── OcclusionBuffer.cs │ │ ├── Octree.cs │ │ ├── OffMeshConnection.cs │ │ ├── OggVorbisSoundStream.cs │ │ ├── Orientation.cs │ │ ├── Orientation2D.cs │ │ ├── PListFile.cs │ │ ├── PListValueType.cs │ │ ├── PackageFile.cs │ │ ├── ParticleEffect.cs │ │ ├── ParticleEffect2D.cs │ │ ├── ParticleEmitter.cs │ │ ├── ParticleEmitter2D.cs │ │ ├── Pass.cs │ │ ├── PassLightingMode.cs │ │ ├── PhysicsWorld.cs │ │ ├── PhysicsWorld2D.cs │ │ ├── Polyhedron.cs │ │ ├── PrimitiveType.cs │ │ ├── Profiler.cs │ │ ├── PropertySet2D.cs │ │ ├── RayQueryLevel.cs │ │ ├── RefCount.cs │ │ ├── RefCounted.cs │ │ ├── RenderCommandSortMode.cs │ │ ├── RenderCommandType.cs │ │ ├── RenderPath.cs │ │ ├── RenderSurface.cs │ │ ├── RenderSurfaceUpdateMode.cs │ │ ├── RenderTargetSizeMode.cs │ │ ├── Renderer.cs │ │ ├── Renderer2D.cs │ │ ├── Resource.cs │ │ ├── ResourceCache.cs │ │ ├── ResourceRequest.cs │ │ ├── ResourceRouter.cs │ │ ├── ResourceWithMetadata.cs │ │ ├── RibbonTrail.cs │ │ ├── RigidBody.cs │ │ ├── RigidBody2D.cs │ │ ├── Scene.cs │ │ ├── SceneResolver.cs │ │ ├── ScrollBar.cs │ │ ├── ScrollView.cs │ │ ├── Serializable.cs │ │ ├── Shader.cs │ │ ├── ShaderParameterAnimationInfo.cs │ │ ├── ShaderParameterGroup.cs │ │ ├── ShaderPrecache.cs │ │ ├── ShaderProgram.cs │ │ ├── ShaderType.cs │ │ ├── ShaderVariation.cs │ │ ├── ShadowQuality.cs │ │ ├── ShapeType.cs │ │ ├── Skeleton.cs │ │ ├── Skybox.cs │ │ ├── Slider.cs │ │ ├── SmoothedTransform.cs │ │ ├── Sound.cs │ │ ├── SoundListener.cs │ │ ├── SoundSource.cs │ │ ├── SoundSource3D.cs │ │ ├── SoundStream.cs │ │ ├── Sphere.cs │ │ ├── Spline.cs │ │ ├── SplinePath.cs │ │ ├── Sprite.cs │ │ ├── Sprite2D.cs │ │ ├── SpriteSheet2D.cs │ │ ├── StaticModel.cs │ │ ├── StaticModelGroup.cs │ │ ├── StaticSprite2D.cs │ │ ├── StencilOp.cs │ │ ├── Technique.cs │ │ ├── Terrain.cs │ │ ├── TerrainPatch.cs │ │ ├── Text.cs │ │ ├── Text3D.cs │ │ ├── TextEffect.cs │ │ ├── Texture.cs │ │ ├── Texture2D.cs │ │ ├── Texture2DArray.cs │ │ ├── Texture3D.cs │ │ ├── TextureAddressMode.cs │ │ ├── TextureCoordinate.cs │ │ ├── TextureCube.cs │ │ ├── TextureFilterMode.cs │ │ ├── TextureUnit.cs │ │ ├── TextureUsage.cs │ │ ├── Tile2D.cs │ │ ├── TileMap2D.cs │ │ ├── TileMapLayer2D.cs │ │ ├── TileMapLayerType2D.cs │ │ ├── TileMapObject2D.cs │ │ ├── TileMapObjectType2D.cs │ │ ├── Time.cs │ │ ├── TmxFile2D.cs │ │ ├── TmxImageLayer2D.cs │ │ ├── TmxLayer2D.cs │ │ ├── TmxObjectGroup2D.cs │ │ ├── TmxTileLayer2D.cs │ │ ├── ToolTip.cs │ │ ├── TrailType.cs │ │ ├── TransformSpace.cs │ │ ├── TraversalMode.cs │ │ ├── TriangleMeshData.cs │ │ ├── UI.cs │ │ ├── UIBatch.cs │ │ ├── UIComponent.cs │ │ ├── UIElement.cs │ │ ├── UnknownComponent.cs │ │ ├── UpdateGeometryType.cs │ │ ├── UrhoConsole.cs │ │ ├── UrhoObject.cs │ │ ├── UrhoString.cs │ │ ├── ValueAnimation.cs │ │ ├── ValueAnimationInfo.cs │ │ ├── VariantType.cs │ │ ├── VertexBuffer.cs │ │ ├── VertexElementSemantic.cs │ │ ├── VertexElementType.cs │ │ ├── VertexLightVSVariation.cs │ │ ├── VerticalAlignment.cs │ │ ├── View.cs │ │ ├── View3D.cs │ │ ├── Viewport.cs │ │ ├── Window.cs │ │ ├── WindowDragMode.cs │ │ ├── WorkItem.cs │ │ ├── WorkQueue.cs │ │ ├── WrapMode.cs │ │ ├── XmlElement.cs │ │ ├── XmlFile.cs │ │ ├── Zone.cs │ │ ├── binding.cpp │ │ └── events.cpp │ ├── Graphics.cs │ ├── IAbstractFile.cs │ ├── Image.cs │ ├── IndexBuffer.cs │ ├── Input.cs │ ├── ListBasedUpdateSynchronizationContext.cs │ ├── Log.cs │ ├── LogSharp.cs │ ├── LogicComponent.cs │ ├── MarshalHelper.cs │ ├── Material.cs │ ├── Math │ │ ├── EaseMath.cs │ │ └── SplineMath.cs │ ├── MemoryBuffer.cs │ ├── Model.cs │ ├── MonoDebugHud.cs │ ├── NavigationMesh.cs │ ├── Network.cs │ ├── Node.cs │ ├── Object.cs │ ├── Octree.cs │ ├── PodVector.cs │ ├── Polyhedron.cs │ ├── Randoms.cs │ ├── RefCounted.cs │ ├── RenderPath.cs │ ├── ResourceCache.cs │ ├── Runtime │ │ ├── IComponentSerializer.cs │ │ ├── IntPtrEqualityComparer.cs │ │ ├── MainLoopDispatcher.cs │ │ ├── MonoPInvokeCallbackAttribute.cs │ │ ├── PreserveAttribute.cs │ │ ├── RefCountedCache.cs │ │ ├── ReferenceHolder.cs │ │ ├── Runtime.cs │ │ ├── Subscription.cs │ │ ├── UrhoEventAdapter.cs │ │ └── Vectors.cs │ ├── SDL.cs │ ├── Scene.cs │ ├── ScriptInstance.cs │ ├── Shapes │ │ ├── Box.cs │ │ ├── Cone.cs │ │ ├── Cylinder.cs │ │ ├── Plane.cs │ │ ├── Pyramid.cs │ │ ├── Shape.cs │ │ ├── Sphere.cs │ │ └── Torus.cs │ ├── SharpReality │ │ ├── DebugGrid.cs │ │ ├── PlaneFinding.cs │ │ ├── SpatialCursor.cs │ │ ├── SpatialMeshInfo.cs │ │ ├── SpatialVertex.cs │ │ ├── StereoApplication.cs │ │ ├── TransparentPlaneWithShadows.cs │ │ └── YuvVideo.cs │ ├── SimpleApplication.cs │ ├── Skeleton.cs │ ├── StaticModel.cs │ ├── String.cs │ ├── StringHash.cs │ ├── Structs.cs │ ├── Stubs.cs │ ├── Texture2D.cs │ ├── UI.cs │ ├── UIComponent.cs │ ├── UIElement.cs │ ├── UrhoConsole.cs │ ├── UrhoMap.cs │ ├── UrhoPlatformInitializer.cs │ ├── VertexBuffer.cs │ ├── Viewport.cs │ ├── WirePlane.cs │ └── XmlElement.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Urho.UWP.rd.xml ├── Resources │ └── Resource.Designer.cs ├── SharpReality │ ├── GestureManager.cs │ ├── Properties │ │ └── SharpReality.rd.xml │ ├── SpatialMappingManager.cs │ ├── Urho.SharpReality.csproj │ ├── UrhoAppView.cs │ ├── UrhoAppViewSource.cs │ ├── VoiceManager.cs │ └── project.json ├── UWP │ ├── UrhoSurface.cs │ ├── UwpUrhoInitializer.cs │ └── project.json ├── Urho.Shared.projitems ├── Urho.Shared.shproj ├── events.txt └── iOS │ ├── ARKitComponent.cs │ ├── ApiDefinition.cs │ ├── IosPlatformInitializer.cs │ ├── StructsAndEnums.cs │ ├── Urho.framework.linkwith.cs │ ├── Urho.framework.plist │ └── UrhoSurface.cs ├── Docs ├── .gitignore ├── Makefile ├── PreserveAttribute.xml ├── README.md ├── Urho.Actions │ ├── ActionEase.xml │ ├── ActionEaseState.xml │ ├── ActionInstant.xml │ ├── ActionInstantState.xml │ ├── ActionManager.xml │ ├── ActionState.xml │ ├── ActionTag.xml │ ├── ActionTween.xml │ ├── ActionTweenState.xml │ ├── AmplitudeAction.xml │ ├── AmplitudeActionState.xml │ ├── BaseAction.xml │ ├── BezierBy.xml │ ├── BezierByState.xml │ ├── BezierConfig.xml │ ├── BezierTo.xml │ ├── BezierToState.xml │ ├── Blink.xml │ ├── BlinkState.xml │ ├── CallFunc.xml │ ├── CallFuncN.xml │ ├── CallFuncND.xml │ ├── CallFuncNDState.xml │ ├── CallFuncNState.xml │ ├── CallFuncO.xml │ ├── CallFuncOState.xml │ ├── CallFuncState.xml │ ├── DelayTime.xml │ ├── DelayTimeState.xml │ ├── EaseBackIn.xml │ ├── EaseBackInOut.xml │ ├── EaseBackInOutState.xml │ ├── EaseBackInState.xml │ ├── EaseBackOut.xml │ ├── EaseBackOutState.xml │ ├── EaseBounceIn.xml │ ├── EaseBounceInOut.xml │ ├── EaseBounceInOutState.xml │ ├── EaseBounceInState.xml │ ├── EaseBounceOut.xml │ ├── EaseBounceOutState.xml │ ├── EaseCustom.xml │ ├── EaseCustomState.xml │ ├── EaseElastic.xml │ ├── EaseElasticIn.xml │ ├── EaseElasticInOut.xml │ ├── EaseElasticInOutState.xml │ ├── EaseElasticInState.xml │ ├── EaseElasticOut.xml │ ├── EaseElasticOutState.xml │ ├── EaseElasticState.xml │ ├── EaseExponentialIn.xml │ ├── EaseExponentialInOut.xml │ ├── EaseExponentialInOutState.xml │ ├── EaseExponentialInState.xml │ ├── EaseExponentialOut.xml │ ├── EaseExponentialOutState.xml │ ├── EaseIn.xml │ ├── EaseInOut.xml │ ├── EaseInOutState.xml │ ├── EaseInState.xml │ ├── EaseOut.xml │ ├── EaseOutState.xml │ ├── EaseRateAction.xml │ ├── EaseRateActionState.xml │ ├── EaseSineIn.xml │ ├── EaseSineInOut.xml │ ├── EaseSineInOutState.xml │ ├── EaseSineInState.xml │ ├── EaseSineOut.xml │ ├── EaseSineOutState.xml │ ├── FadeIn.xml │ ├── FadeInState.xml │ ├── FadeOut.xml │ ├── FadeOutState.xml │ ├── FadeTo.xml │ ├── FadeToState.xml │ ├── FiniteTimeAction.xml │ ├── FiniteTimeActionState.xml │ ├── Hide.xml │ ├── HideState.xml │ ├── JumpBy.xml │ ├── JumpByState.xml │ ├── JumpTo.xml │ ├── JumpToState.xml │ ├── MoveBy.xml │ ├── MoveByState.xml │ ├── MoveTo.xml │ ├── MoveToState.xml │ ├── Parallel.xml │ ├── ParallelState.xml │ ├── Place.xml │ ├── PlaceState.xml │ ├── RemoveSelf.xml │ ├── RemoveSelfState.xml │ ├── Repeat.xml │ ├── RepeatForever.xml │ ├── RepeatForeverState.xml │ ├── RepeatState.xml │ ├── ReverseTime.xml │ ├── ReverseTimeState.xml │ ├── RotateBy.xml │ ├── RotateByState.xml │ ├── RotateTo.xml │ ├── RotateToState.xml │ ├── ScaleBy.xml │ ├── ScaleByState.xml │ ├── ScaleTo.xml │ ├── ScaleToState.xml │ ├── Sequence.xml │ ├── SequenceState.xml │ ├── ShaderParameterColorFromTo.xml │ ├── ShaderParameterFloatFromTo.xml │ ├── ShaderParameterFromToState`1.xml │ ├── ShaderParameterFromTo`1.xml │ ├── ShaderParameterVector2FromTo.xml │ ├── ShaderParameterVector3FromTo.xml │ ├── ShaderParameterVector4FromTo.xml │ ├── Show.xml │ ├── ShowState.xml │ ├── Spawn.xml │ ├── SpawnState.xml │ ├── Speed.xml │ ├── TargetedAction.xml │ ├── TargetedActionState.xml │ ├── TintBy.xml │ ├── TintByState.xml │ ├── TintTo.xml │ ├── TintToState.xml │ ├── ToggleVisibility.xml │ ├── ToggleVisibilityState.xml │ └── _images │ │ └── easing-functions.png ├── Urho.Audio │ ├── Audio.xml │ ├── BufferedSoundStream.xml │ ├── OggVorbisSoundStream.xml │ ├── Sound.xml │ ├── SoundListener.xml │ ├── SoundSource.xml │ ├── SoundSource3D.xml │ └── SoundStream.xml ├── Urho.Desktop │ └── DesktopUrhoInitializer.xml ├── Urho.Gui │ ├── BorderImage.xml │ ├── Button.xml │ ├── CharEntryEventArgs.xml.remove │ ├── CheckBox.xml │ ├── Corner.xml │ ├── Cursor.xml │ ├── CursorShape.xml │ ├── DefocusedEventArgs.xml │ ├── DragBeginEventArgs.xml │ ├── DragCancelEventArgs.xml │ ├── DragDropFinishEventArgs.xml │ ├── DragDropTestEventArgs.xml │ ├── DragEndEventArgs.xml │ ├── DragMoveEventArgs.xml │ ├── DropDownList.xml │ ├── ElementAddedEventArgs.xml │ ├── ElementRemovedEventArgs.xml │ ├── FileSelectedEventArgs.xml │ ├── FileSelector.xml │ ├── FocusChangedEventArgs.xml │ ├── FocusMode.xml │ ├── FocusedEventArgs.xml │ ├── Font.xml │ ├── FontFace.xml │ ├── FontFaceBitmap.xml │ ├── FontFaceFreeType.xml │ ├── HighlightMode.xml │ ├── HorizontalAlignment.xml │ ├── HoverBeginEventArgs.xml │ ├── HoverEndEventArgs.xml │ ├── ItemClickedEventArgs.xml │ ├── ItemDeselectedEventArgs.xml │ ├── ItemDoubleClickedEventArgs.xml │ ├── ItemSelectedEventArgs.xml │ ├── LayoutMode.xml │ ├── LayoutUpdatedEventArgs.xml │ ├── LineEdit.xml │ ├── ListView.xml │ ├── Menu.xml │ ├── MenuSelectedEventArgs.xml │ ├── MessageACKEventArgs.xml │ ├── MessageBox.xml │ ├── ModalChangedEventArgs.xml │ ├── NameChangedEventArgs.xml │ ├── Orientation.xml │ ├── PositionedEventArgs.xml │ ├── PressedEventArgs.xml │ ├── ReleasedEventArgs.xml │ ├── ResizedEventArgs.xml │ ├── ScrollBar.xml │ ├── ScrollBarChangedEventArgs.xml │ ├── ScrollView.xml │ ├── SelectionChangedEventArgs.xml │ ├── Slider.xml │ ├── SliderChangedEventArgs.xml │ ├── SliderPagedEventArgs.xml │ ├── Sprite.xml │ ├── Text.xml │ ├── Text3D.xml │ ├── TextChangedEventArgs.xml │ ├── TextEffect.xml │ ├── TextEntryEventArgs.xml │ ├── TextFinishedEventArgs.xml │ ├── ToggledEventArgs.xml │ ├── ToolTip.xml │ ├── TraversalMode.xml │ ├── UI.xml │ ├── UIDropFileEventArgs.xml │ ├── UIElement.xml │ ├── UIMouseClickEndEventArgs.xml │ ├── UIMouseClickEventArgs.xml │ ├── UIMouseDoubleClickEventArgs.xml │ ├── UnhandledKeyEventArgs.xml │ ├── VerticalAlignment.xml │ ├── View3D.xml │ ├── ViewChangedEventArgs.xml │ ├── VisibleChangedEventArgs.xml │ ├── Window.xml │ └── WindowDragMode.xml ├── Urho.IO │ ├── AsyncExecFinishedEventArgs.xml │ ├── File.xml │ ├── FileMode.xml │ ├── FileSystem.xml │ ├── FileWatcher.xml │ ├── Log.xml │ ├── LogMessageEventArgs.xml │ ├── PackageEntry.xml │ └── PackageFile.xml ├── Urho.Navigation │ ├── CrowdAgent.xml │ ├── CrowdAgentFailureEventArgs.xml │ ├── CrowdAgentFormationEventArgs.xml │ ├── CrowdAgentRepositionEventArgs.xml │ ├── CrowdAgentRequestedTarget.xml │ ├── CrowdAgentState.xml │ ├── CrowdAgentStateChangedEventArgs.xml │ ├── CrowdAgentTargetState.xml │ ├── CrowdManager.xml │ ├── CrowdObstacleAvoidanceParams.xml │ ├── DynamicNavigationMesh.xml │ ├── NavArea.xml │ ├── Navigable.xml │ ├── NavigationAreaRebuiltEventArgs.xml │ ├── NavigationMesh.xml │ ├── NavigationMeshRebuiltEventArgs.xml │ ├── NavigationObstacleAddedEventArgs.xml │ ├── NavigationObstacleRemovedEventArgs.xml │ ├── NavigationPushiness.xml │ ├── NavigationQuality.xml │ ├── NavmeshPartitionType.xml │ ├── Obstacle.xml │ ├── OffMeshConnection.xml │ └── dtQueryFilter.xml ├── Urho.Network │ ├── ClientConnectedEventArgs.xml │ ├── ClientDisconnectedEventArgs.xml │ ├── ClientIdentityEventArgs.xml │ ├── ClientSceneLoadedEventArgs.xml │ ├── ConnectFailedEventArgs.xml │ ├── Connection.xml │ ├── DirtyBits.xml │ ├── HttpRequest.xml │ ├── HttpRequestState.xml │ ├── Network.xml │ ├── NetworkMessageEventArgs.xml │ ├── NetworkPriority.xml │ ├── NetworkSceneLoadFailedEventArgs.xml │ ├── NetworkUpdateEventArgs.xml │ ├── NetworkUpdateSentEventArgs.xml │ ├── NodeReplicationState.xml │ ├── ObserverPositionSendMode.xml │ ├── RemoteEventDataEventArgs.xml │ ├── ReplicationState.xml │ ├── ServerConnectedEventArgs.xml │ └── ServerDisconnectedEventArgs.xml ├── Urho.Physics │ ├── CollisionData.xml │ ├── CollisionEventMode.xml │ ├── CollisionShape.xml │ ├── Constraint.xml │ ├── ConstraintType.xml │ ├── PhysicsCollisionEndEventArgs.xml │ ├── PhysicsCollisionEventArgs.xml │ ├── PhysicsCollisionStartEventArgs.xml │ ├── PhysicsPostStepEventArgs.xml │ ├── PhysicsPreStepEventArgs.xml │ ├── PhysicsRaycastResult.xml │ ├── PhysicsWorld.xml │ ├── RigidBody.xml │ └── ShapeType.xml ├── Urho.Portable │ └── ScriptInstance.xml ├── Urho.Resources │ ├── AsyncLoadState.xml │ ├── ChangeLanguageEventArgs.xml │ ├── CompressedFormat.xml │ ├── FileChangedEventArgs.xml │ ├── IComponentDeserializer.xml │ ├── IComponentSerializer.xml │ ├── Image.xml │ ├── JsonFile.xml │ ├── JsonNumberType.xml │ ├── JsonValueType.xml │ ├── LoadFailedEventArgs.xml │ ├── Localization.xml │ ├── PListFile.xml │ ├── PListValueType.xml │ ├── ReloadFailedEventArgs.xml │ ├── ReloadFinishedEventArgs.xml │ ├── ReloadStartedEventArgs.xml │ ├── Resource.xml │ ├── ResourceBackgroundLoadedEventArgs.xml │ ├── ResourceCache.xml │ ├── ResourceNotFoundEventArgs.xml │ ├── ResourceRequest.xml │ ├── UnknownResourceTypeEventArgs.xml │ ├── XPathResultSet.xml │ ├── XmlComponentSerializer.xml │ ├── XmlElement.xml │ └── XmlFile.xml ├── Urho.Shapes │ ├── Box.xml │ ├── Cone.xml │ ├── Cylinder.xml │ ├── Plane.xml │ ├── Pyramid.xml │ ├── Shape.xml │ ├── Sphere.xml │ └── Torus.xml ├── Urho.SharpReality.HoloToolkit │ ├── BoundedPlane.xml │ ├── Bounds.xml │ ├── Matrix4x4.xml │ ├── Mesh.xml │ ├── MeshFilter.xml │ ├── OrientedBoundingBox.xml │ ├── Plane.xml │ ├── PlaneFinding+MeshData.xml │ ├── PlaneFinding.xml │ ├── Quaternion.xml │ ├── Transform.xml │ └── Vector3.xml ├── Urho.SharpReality │ ├── DebugGrid.xml │ ├── SpatialCursor.xml │ ├── SpatialMeshInfo.xml │ ├── SpatialVertex.xml │ ├── StereoApplication.xml │ ├── TransparentPlaneWithShadows.xml │ └── YuvVideo.xml ├── Urho.Urho2D │ ├── AnimatedSprite2D.xml │ ├── AnimationSet2D.xml │ ├── BodyType2D.xml │ ├── CollisionBox2D.xml │ ├── CollisionChain2D.xml │ ├── CollisionCircle2D.xml │ ├── CollisionEdge2D.xml │ ├── CollisionPolygon2D.xml │ ├── CollisionShape2D.xml │ ├── Constraint2D.xml │ ├── ConstraintDistance2D.xml │ ├── ConstraintFriction2D.xml │ ├── ConstraintGear2D.xml │ ├── ConstraintMotor2D.xml │ ├── ConstraintMouse2D.xml │ ├── ConstraintPrismatic2D.xml │ ├── ConstraintPulley2D.xml │ ├── ConstraintRevolute2D.xml │ ├── ConstraintRope2D.xml │ ├── ConstraintWeld2D.xml │ ├── ConstraintWheel2D.xml │ ├── CurveType.xml │ ├── Drawable2D.xml │ ├── EmitterType2D.xml │ ├── LoopMode.xml │ ├── LoopMode2D.xml │ ├── Orientation2D.xml │ ├── ParticleEffect2D.xml │ ├── ParticleEmitter2D.xml │ ├── PhysicsBeginContact2DEventArgs.xml │ ├── PhysicsEndContact2DEventArgs.xml │ ├── PhysicsWorld2D.xml │ ├── PropertySet2D.xml │ ├── Renderer2D.xml │ ├── RigidBody2D.xml │ ├── Sprite2D.xml │ ├── SpriteSheet2D.xml │ ├── StaticSprite2D.xml │ ├── Texture2D.xml │ ├── Tile2D.xml │ ├── TileMap2D.xml │ ├── TileMapInfo2D.xml │ ├── TileMapLayer2D.xml │ ├── TileMapLayerType2D.xml │ ├── TileMapObject2D.xml │ ├── TileMapObjectType2D.xml │ ├── TmxFile2D.xml │ ├── TmxImageLayer2D.xml │ ├── TmxLayer2D.xml │ ├── TmxObjectGroup2D.xml │ └── TmxTileLayer2D.xml ├── Urho.source ├── Urho.xml ├── Urho │ ├── Animatable.xml │ ├── AnimatedModel.xml │ ├── Animation.xml │ ├── AnimationController.xml │ ├── AnimationState.xml │ ├── AnimationTrack.xml │ ├── AnimationTriggerEventArgs.xml │ ├── AnimationTriggerPoint.xml │ ├── Application+ActionIntPtr.xml │ ├── Application.xml │ ├── ApplicationOptions+OrientationType.xml │ ├── ApplicationOptions.xml │ ├── AsyncLoadFinishedEventArgs.xml │ ├── AsyncLoadProgressEventArgs.xml │ ├── AttributeAccessor.xml │ ├── AttributeAnimationAddedEventArgs.xml │ ├── AttributeAnimationInfo.xml │ ├── AttributeAnimationRemovedEventArgs.xml │ ├── AttributeAnimationUpdateEventArgs.xml │ ├── AttributeInfo.xml │ ├── AutoRemoveMode.xml │ ├── Bar.xml │ ├── BeginRenderingEventArgs.xml │ ├── BeginViewRenderEventArgs.xml │ ├── BeginViewUpdateEventArgs.xml │ ├── BiasParameters.xml │ ├── Billboard.xml │ ├── BillboardSet.xml │ ├── BillboardWrapper.xml │ ├── BlendMode.xml │ ├── Bone.xml │ ├── BoneHierarchyCreatedEventArgs.xml │ ├── BoneWrapper.xml │ ├── BoundingBox.xml │ ├── Camera.xml │ ├── CascadeParameters.xml │ ├── CollisionGeometryData.xml │ ├── Color.xml │ ├── ColorFrame.xml │ ├── CompareMode.xml │ ├── Component.xml │ ├── ComponentAddedEventArgs.xml │ ├── ComponentClonedEventArgs.xml │ ├── ComponentEnabledChangedEventArgs.xml │ ├── ComponentRemovedEventArgs.xml │ ├── ComponentReplicationState.xml │ ├── CompressedLevel.xml │ ├── ConsoleCommandEventArgs.xml │ ├── ConstantBuffer.xml │ ├── Context.xml │ ├── Controls.xml │ ├── CoreAssets+Models+LinePrimitives.xml │ ├── CoreAssets+PostProcess.xml │ ├── CoreAssets+ShaderParameters+PBR.xml │ ├── CoreAssets+ShaderParameters.xml │ ├── CoreAssets+UIs.xml │ ├── CreateMode.xml │ ├── CubeMapFace.xml │ ├── CubeMapLayout.xml │ ├── CullMode.xml │ ├── CustomGeometry.xml │ ├── CustomGeometryVertex.xml │ ├── DebugHud.xml │ ├── DebugRenderer.xml │ ├── DecalSet.xml │ ├── DeferredLightPSVariation.xml │ ├── DeferredLightVSVariation.xml │ ├── DeviceLostEventArgs.xml │ ├── DeviceResetEventArgs.xml │ ├── Drawable.xml │ ├── DrawableFlags.xml │ ├── DropFileEventArgs.xml │ ├── ElementMask.xml │ ├── EmitterType.xml │ ├── EndAllViewsRenderEventArgs.xml │ ├── EndRenderingEventArgs.xml │ ├── EndViewRenderEventArgs.xml │ ├── EndViewUpdateEventArgs.xml │ ├── Engine.xml │ ├── EventDataContainer.xml │ ├── EventReceiverGroup.xml │ ├── ExitRequestedEventArgs.xml │ ├── FaceCameraMode.xml │ ├── FillMode.xml │ ├── FocusParameters.xml │ ├── FontGlyph.xml │ ├── FontHintLevel.xml │ ├── FontType.xml │ ├── FrameEndedEventArgs.xml │ ├── FrameStartedEventArgs.xml │ ├── Frustum.xml │ ├── FrustumPlane.xml │ ├── GImpactMeshData.xml │ ├── GPUObject.xml │ ├── Geometry.xml │ ├── GeometryType.xml │ ├── GestureInputEventArgs.xml │ ├── GestureRecordedEventArgs.xml │ ├── Graphics.xml │ ├── GraphicsImpl.xml │ ├── HashIteratorBase.xml │ ├── IAbstractFile.xml │ ├── IDeserializer.xml │ ├── IGPUObject.xml │ ├── IKEffectorTargetChangedEventArgs.xml │ ├── ISerializer.xml │ ├── IUrhoSurface.xml.remove │ ├── IndexBuffer.xml │ ├── Input.xml │ ├── InputBeginEventArgs.xml │ ├── InputEndEventArgs.xml │ ├── InputFocusEventArgs.xml │ ├── IntRect.xml │ ├── IntVector2.xml │ ├── IntVector3.xml │ ├── InterceptNetworkUpdateEventArgs.xml │ ├── InterpMethod.xml │ ├── InterpolationMode.xml │ ├── Intersection.xml │ ├── Iterator.xml │ ├── JoystickAxisMoveEventArgs.xml │ ├── JoystickButtonDownEventArgs.xml │ ├── JoystickButtonUpEventArgs.xml │ ├── JoystickConnectedEventArgs.xml │ ├── JoystickDisconnectedEventArgs.xml │ ├── JoystickHatMoveEventArgs.xml │ ├── JoystickState.xml │ ├── Key.xml │ ├── KeyDownEventArgs.xml │ ├── KeyUpEventArgs.xml │ ├── Light.xml │ ├── LightBatchQueue.xml │ ├── LightPSVariation.xml │ ├── LightType.xml │ ├── LightVSVariation.xml │ ├── ListBasedUpdateSynchronizationContext.xml │ ├── LoadMode.xml │ ├── LockState.xml │ ├── LogLevel.xml │ ├── LogSharp.xml.remove │ ├── LogicComponent.xml │ ├── MarshalHelper.xml │ ├── Material.xml │ ├── MathHelper.xml │ ├── Matrix3.xml │ ├── Matrix3x4.xml │ ├── Matrix4.xml │ ├── MemoryBuffer.xml │ ├── Model.xml │ ├── ModelMorph.xml │ ├── MonoDebugHud.xml │ ├── MonoPInvokeCallbackAttribute.xml │ ├── MouseButton.xml │ ├── MouseButtonDownEventArgs.xml │ ├── MouseButtonUpEventArgs.xml │ ├── MouseMode.xml │ ├── MouseModeChangedEventArgs.xml │ ├── MouseMovedEventArgs.xml │ ├── MouseVisibleChangedEventArgs.xml │ ├── MouseWheelEventArgs.xml │ ├── MultiGestureEventArgs.xml │ ├── NavigationAllTilesRemovedEventArgs.xml │ ├── NavigationTileAddedEventArgs.xml │ ├── NavigationTileRemovedEventArgs.xml │ ├── NetworkState.xml │ ├── Node.xml │ ├── NodeAddedEventArgs.xml │ ├── NodeBeginContact2DEventArgs.xml │ ├── NodeClonedEventArgs.xml │ ├── NodeCollisionEndEventArgs.xml │ ├── NodeCollisionEventArgs.xml │ ├── NodeCollisionStartEventArgs.xml │ ├── NodeEnabledChangedEventArgs.xml │ ├── NodeEndContact2DEventArgs.xml │ ├── NodeNameChangedEventArgs.xml │ ├── NodeRemovedEventArgs.xml │ ├── NodeUpdateContact2DEventArgs.xml │ ├── ObjectAnimation.xml │ ├── ObjectCallbackSignature.xml │ ├── ObjectFactory.xml │ ├── OcclusionBuffer.xml │ ├── Octant.xml │ ├── Octree.xml │ ├── ParticleEffect.xml │ ├── ParticleEmitter.xml │ ├── ParticlesDurationEventArgs.xml │ ├── ParticlesEndEventArgs.xml │ ├── Pass.xml │ ├── PassLightingMode.xml │ ├── PhysicsUpdateContact2DEventArgs.xml │ ├── Plane.xml │ ├── Platforms.xml │ ├── PlatformsExtensions.xml │ ├── PodVector`1.xml │ ├── Polyhedron.xml │ ├── PostRenderUpdateEventArgs.xml │ ├── PostUpdateEventArgs.xml │ ├── PrimitiveType.xml │ ├── Profiler.xml │ ├── ProfilerBlock.xml │ ├── ProgressBarChangedEventArgs.xml │ ├── Quaternion.xml │ ├── RandomAccessIterator.xml │ ├── Randoms.xml │ ├── Ray.xml │ ├── RayQueryLevel.xml │ ├── RayQueryResult.xml │ ├── Rect.xml │ ├── RefCount.xml │ ├── RefCounted.xml │ ├── RenderCommandSortMode.xml │ ├── RenderCommandType.xml │ ├── RenderPath.xml │ ├── RenderPathCommand.xml │ ├── RenderPathEventEventArgs.xml │ ├── RenderSurface.xml │ ├── RenderSurfaceUpdateEventArgs.xml │ ├── RenderSurfaceUpdateMode.xml │ ├── RenderTargetSizeMode.xml │ ├── RenderUpdateEventArgs.xml │ ├── Renderer.xml │ ├── ResourceRef.xml │ ├── ResourceRefList.xml │ ├── ResourceRouter.xml │ ├── ResourceWithMetadata.xml │ ├── RibbonTrail.xml │ ├── SDLRawInputEventArgs.xml │ ├── SDL_Event.xml │ ├── SDL_Scancode.xml │ ├── Scene.xml │ ├── SceneDrawableUpdateFinishedEventArgs.xml │ ├── ScenePostUpdateEventArgs.xml │ ├── SceneSubsystemUpdateEventArgs.xml │ ├── SceneUpdateEventArgs.xml │ ├── ScreenModeEventArgs.xml │ ├── SdlKeyState.xml │ ├── Serializable.xml │ ├── Shader.xml │ ├── ShaderParameter.xml │ ├── ShaderParameterAnimationInfo.xml │ ├── ShaderParameterGroup.xml │ ├── ShaderPrecache.xml │ ├── ShaderProgram.xml │ ├── ShaderType.xml │ ├── ShaderVariation.xml │ ├── SimpleApplication.xml │ ├── Skeleton.xml │ ├── Skybox.xml │ ├── SmoothedTransform.xml │ ├── SoundType.xml │ ├── SplinePath.xml │ ├── StaticModel.xml │ ├── StaticModelGroup.xml │ ├── StencilOp.xml │ ├── StringHash.xml │ ├── StringHashRef.xml │ ├── Subscription.xml │ ├── TargetPositionChangedEventArgs.xml │ ├── TargetRotationChangedEventArgs.xml │ ├── Technique.xml │ ├── TemporaryChangedEventArgs.xml │ ├── Terrain.xml │ ├── TerrainCreatedEventArgs.xml │ ├── TerrainPatch.xml │ ├── TextEditingEventArgs.xml │ ├── TextInputEventArgs.xml │ ├── Texture.xml │ ├── Texture2DArray.xml │ ├── Texture3D.xml │ ├── TextureAddressMode.xml │ ├── TextureCoordinate.xml │ ├── TextureCube.xml │ ├── TextureFilterMode.xml │ ├── TextureFrame.xml │ ├── TextureUnit.xml │ ├── TextureUsage.xml │ ├── Time.xml │ ├── TouchBeginEventArgs.xml │ ├── TouchEndEventArgs.xml │ ├── TouchMoveEventArgs.xml │ ├── TouchState.xml │ ├── TrailType.xml │ ├── TransformSpace.xml │ ├── TypeInfo.xml │ ├── UIComponent.xml │ ├── UnhandledExceptionEventArgs.xml │ ├── UnknownComponent.xml │ ├── UpdateEventArgs.xml │ ├── UpdateGeometryType.xml │ ├── UpdateSmoothingEventArgs.xml │ ├── UrhoConsole.xml │ ├── UrhoObject.xml │ ├── UrhoObjectFlag.xml │ ├── UrhoString.xml │ ├── ValueAnimation.xml │ ├── ValueAnimationInfo.xml │ ├── Variant.xml │ ├── VariantType.xml │ ├── VariantValue.xml │ ├── VariantValueLine.xml.remove │ ├── Vector2.xml │ ├── Vector3.xml │ ├── Vector4.xml │ ├── VectorBase.xml │ ├── VertexBuffer+PositionColor.xml │ ├── VertexBuffer+PositionNormal.xml │ ├── VertexBuffer+PositionNormalColor.xml │ ├── VertexBuffer+PositionNormalColorTexcoord.xml │ ├── VertexBuffer+PositionNormalColorTexcoordTangent.xml │ ├── VertexBuffer.xml │ ├── VertexElement.xml │ ├── VertexLightVSVariation.xml │ ├── View.xml │ ├── ViewBuffersReadyEventArgs.xml │ ├── ViewGlobalShaderParametersEventArgs.xml │ ├── ViewOverrideFlags.xml │ ├── Viewport.xml │ ├── WeakPtr.xml │ ├── WindowPosEventArgs.xml │ ├── WirePlane.xml │ ├── WorkItem.xml │ ├── WorkItemCompletedEventArgs.xml │ ├── WorkQueue.xml │ ├── WrapMode.xml │ ├── Zone.xml │ └── _images │ │ ├── Untitled.png │ │ ├── back.png │ │ ├── pbr_techniques.png │ │ ├── t_Diff.png │ │ ├── t_DiffAdd.png │ │ ├── t_DiffEmissive.png │ │ ├── t_DiffMultiply.png │ │ ├── t_DiffNormal.png │ │ ├── t_DiffNormalSpec.png │ │ ├── t_DiffSpec.png │ │ ├── t_DiffUnlit.png │ │ ├── t_NoTexture.png │ │ ├── t_NoTextureNormal.png │ │ ├── t_NoTextureUnlit.png │ │ └── techniques.png ├── fill.fs ├── index.xml ├── ns-.xml ├── ns-Urho.Actions.xml ├── ns-Urho.Audio.xml ├── ns-Urho.Gui.xml ├── ns-Urho.IO.xml ├── ns-Urho.Navigation.xml ├── ns-Urho.Network.xml ├── ns-Urho.Physics.xml ├── ns-Urho.Portable.xml ├── ns-Urho.Resources.xml ├── ns-Urho.Shapes.xml ├── ns-Urho.SharpReality.HoloToolkit.xml ├── ns-Urho.SharpReality.xml ├── ns-Urho.Urho2D.xml └── ns-Urho.xml ├── Extensions ├── Urho.Extensions.Cocoa │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Urho.Extensions.Cocoa.csproj │ └── UrhoSurface.cs ├── Urho.Extensions.Droid.ARCore │ ├── ARCore.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ └── Resource.Designer.cs │ └── Urho.Extensions.Droid.ARCore.csproj ├── Urho.Extensions.WinForms │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Urho.Extensions.WinForms.csproj │ ├── UrhoSurface.Designer.cs │ ├── UrhoSurface.cs │ └── UrhoSurface.resx └── Urho.Extensions.Wpf │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Urho.Extensions.Wpf.csproj │ ├── UrhoSurface.xaml │ └── UrhoSurface.xaml.cs ├── LICENSE ├── MakeAndroid ├── MakeLinux ├── MakeMac ├── MakeSharpReality ├── MakeSharpReality.bat ├── MakeUWP ├── MakeUWP.bat ├── MakeWindows ├── MakeWindows.bat ├── MakeWindowsAll.bat ├── Makefile ├── MakeiOS ├── Nuget ├── .nuget │ └── NuGet.exe ├── Desktop │ └── UrhoSharp.targets ├── SharpReality │ └── UrhoSharp.SharpReality.targets ├── Tools │ └── UrhoSharp.Tools.targets ├── UWP │ ├── UrhoSharp.Forms.targets │ └── UrhoSharp.targets ├── Urho.ARCore.nuspec ├── Urho.Cocoa.nuspec ├── Urho.Forms.nuspec ├── Urho.SharpReality.nuspec ├── Urho.Tools.nuspec ├── Urho.WinForms.nuspec ├── Urho.Wpf.nuspec ├── Urho.nuspec ├── UrhoSharpNuget.png └── iOS │ ├── UrhoSharp.Forms.targets │ └── UrhoSharp.targets ├── ProjectTemplates ├── Makefile ├── SharpReality │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Data │ │ ├── Materials │ │ │ ├── Earth.xml │ │ │ └── Moon.xml │ │ ├── Models │ │ │ └── TeaPot.mdl │ │ ├── Shaders │ │ │ └── HLSL │ │ │ │ └── CustomLitSolid.hlsl │ │ ├── Techniques │ │ │ └── EarthTechnique.xml │ │ └── Textures │ │ │ ├── Earth.jpg │ │ │ ├── Earth_Clouds.jpg │ │ │ ├── Earth_Night.jpg │ │ │ ├── Earth_NormalsMap.png │ │ │ ├── Earth_SpecularMap.png │ │ │ ├── License.txt │ │ │ ├── Mars.jpg │ │ │ ├── Moon.jpg │ │ │ ├── Moon_NormalsMap.png │ │ │ └── Space.png │ ├── HoloUrho.csproj │ ├── MyTemplate.vstemplate │ ├── Package.appxmanifest │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── __TemplateIcon.ico │ └── project.json ├── SharpRealityVsix │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SharpRealityVsix.csproj │ ├── UrhoSharp.png │ ├── UrhoSharpIco.ico │ ├── index.html │ ├── source.extension.vsixmanifest │ └── stylesheet.css ├── VSIX.sln ├── VSIX │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UrhoSharp.png │ ├── UrhoSharpIco.ico │ ├── UrhoSharpTemplateWizard │ │ ├── ChildWizard.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RootWizard.cs │ │ ├── UrhoSharpTemplateWizard.csproj │ │ └── key.snk │ ├── UrhoSharpVsix.csproj │ ├── index.html │ ├── source.extension.vsixmanifest │ └── stylesheet.css └── VsSolutionTemplate │ ├── UrhoSharp.Desktop │ ├── App.config │ ├── MyData │ │ ├── Materials │ │ │ ├── Earth.xml │ │ │ └── Moon.xml │ │ └── Textures │ │ │ ├── Earth.jpg │ │ │ ├── Earth_Clouds.jpg │ │ │ ├── Earth_Night.jpg │ │ │ ├── Earth_NormalsMap.png │ │ │ ├── Earth_SpecularMap.png │ │ │ ├── License.txt │ │ │ ├── Moon.jpg │ │ │ ├── Moon_NormalsMap.png │ │ │ ├── Space.png │ │ │ └── xamarin.png │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UrhoSharp.Desktop.csproj │ ├── UrhoSharp.Desktop.vstemplate │ ├── __TemplateIcon.ico │ └── packages.config │ ├── UrhoSharp.Droid │ ├── Assets │ │ └── MyData │ │ │ ├── Materials │ │ │ ├── Earth.xml │ │ │ └── Moon.xml │ │ │ └── Textures │ │ │ ├── Earth.jpg │ │ │ ├── Earth_Clouds.jpg │ │ │ ├── Earth_Night.jpg │ │ │ ├── Earth_NormalsMap.png │ │ │ ├── Earth_SpecularMap.png │ │ │ ├── License.txt │ │ │ ├── Moon.jpg │ │ │ ├── Moon_NormalsMap.png │ │ │ ├── Space.png │ │ │ └── xamarin.png │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Resource.Designer.cs │ │ └── drawable │ │ │ └── Icon.png │ ├── UrhoSharp.Droid.csproj │ ├── UrhoSharp.Droid.vstemplate │ ├── __TemplateIcon.ico │ └── packages.config │ ├── UrhoSharp.PCL.vstemplate │ ├── UrhoSharp.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── LaunchScreen.xib │ │ └── MyData │ │ │ ├── Materials │ │ │ ├── Earth.xml │ │ │ └── Moon.xml │ │ │ └── Textures │ │ │ ├── Earth.jpg │ │ │ ├── Earth_Clouds.jpg │ │ │ ├── Earth_Night.jpg │ │ │ ├── Earth_NormalsMap.png │ │ │ ├── Earth_SpecularMap.png │ │ │ ├── License.txt │ │ │ ├── Moon.jpg │ │ │ ├── Moon_NormalsMap.png │ │ │ ├── Space.png │ │ │ └── xamarin.png │ ├── UrhoSharp.iOS.csproj │ ├── UrhoSharp.iOS.vstemplate │ ├── __TemplateIcon.ico │ └── packages.config │ ├── UrhoSharp │ ├── MyGame.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UrhoSharp.csproj │ ├── UrhoSharp.vstemplate │ ├── __TemplateIcon.ico │ └── packages.config │ └── UrhoSharpIco.ico ├── README.md ├── Screenshots ├── ARCore.png ├── ARKit.gif ├── Android.gif ├── Linux.png └── SamplyGame.gif ├── SharpieBinder ├── .gitignore ├── AssetsModelGenerator │ ├── App.config │ ├── AssetsModelGenerator.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Commenter.cs ├── CxxBinder.cs ├── LICENSE ├── NamespaceRegistry.cs ├── OptionalParametersParser.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── README.md ├── ScanBaseTypes.cs ├── SharpieBinder.csproj ├── SharpieBinder.sln ├── StringUtil.cs ├── StructsValidator │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── StructsValidator.csproj ├── bin │ ├── Clang.dll │ ├── Sharpie.Bind.dll │ └── libclang-mono.dylib ├── nuget.config └── packages.config ├── Tests ├── Playgrounds │ ├── Forms │ │ └── Playgrounds.Forms │ │ │ ├── Playgrounds.Forms.Droid │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ ├── Playgrounds.Forms.Droid.csproj │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ ├── layout │ │ │ │ │ ├── Tabbar.axml │ │ │ │ │ └── Toolbar.axml │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ └── packages.config │ │ │ ├── Playgrounds.Forms.UWP │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Playgrounds.Forms.UWP.csproj │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ └── Windows_TemporaryKey.pfx │ │ │ ├── Playgrounds.Forms.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Playgrounds.Forms.iOS.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-Small-40.png │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ ├── Icon-Small.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── iTunesArtwork │ │ │ ├── iTunesArtwork@2x │ │ │ └── packages.config │ │ │ └── Playgrounds.Forms │ │ │ ├── App.cs │ │ │ ├── Charts.cs │ │ │ ├── Playgrounds.Forms.Shared.projitems │ │ │ ├── Playgrounds.Forms.Shared.shproj │ │ │ ├── Playgrounds.Forms.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── RandomHelper.cs │ │ │ └── packages.config │ ├── Playgrounds.Cocoa │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-128.png │ │ │ │ ├── AppIcon-128@2x.png │ │ │ │ ├── AppIcon-16.png │ │ │ │ ├── AppIcon-16@2x.png │ │ │ │ ├── AppIcon-256.png │ │ │ │ ├── AppIcon-256@2x.png │ │ │ │ ├── AppIcon-32.png │ │ │ │ ├── AppIcon-32@2x.png │ │ │ │ ├── AppIcon-512.png │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── Playgrounds.Cocoa.csproj │ │ ├── ViewController.cs │ │ └── ViewController.designer.cs │ ├── Playgrounds.Console │ │ ├── App.config │ │ ├── Bug219.cs │ │ ├── EarthDemo.cs │ │ ├── HoloScene │ │ │ ├── DTO.cs │ │ │ └── HoloScene.cs │ │ ├── Playgrounds.Console.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Raycasts.cs │ │ ├── SimpleApp.cs │ │ ├── SimpleApplicationTests.cs │ │ ├── StereoModePerformance.cs │ │ └── packages.config │ ├── Playgrounds.Droid │ │ ├── ARCoreSample.cs │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Playgrounds.Droid.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ └── Main.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ └── packages.config │ ├── Playgrounds.NetCoreApp │ │ ├── Playgrounds.NetCoreApp.csproj │ │ └── Program.cs │ ├── Playgrounds.SharpReality │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── Package.appxmanifest │ │ ├── PerformanceTests.cs │ │ ├── Playgrounds.SharpReality.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── SpatialMappingTests.cs │ ├── Playgrounds.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── HelloWorld.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Playgrounds.UWP.csproj │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ ├── Playgrounds.WinForms │ │ ├── App.config │ │ ├── Game.cs │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Playgrounds.WinForms.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── Playgrounds.Wpf │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Playgrounds.Wpf.csproj │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── Playgrounds.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── First.imageset │ │ │ ├── Contents.json │ │ │ └── vector.pdf │ │ └── Second.imageset │ │ │ ├── Contents.json │ │ │ └── vector.pdf │ │ ├── Entitlements.plist │ │ ├── FirstViewController.cs │ │ ├── FirstViewController.designer.cs │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── Playgrounds.iOS.csproj │ │ ├── SecondViewController.cs │ │ └── SecondViewController.designer.cs └── Urho.Tests │ ├── Actions │ └── ActionManager.cs │ ├── Bootstrap │ └── TestApp.cs │ ├── ColorTests.cs │ ├── Issue222.cs │ ├── NodeTests.cs │ ├── ShapesTests.cs │ ├── StringHash.cs │ ├── Urho.Tests.csproj │ └── packages.config ├── Urho.sln ├── Urho3D ├── CoreData.pak ├── CoreData │ ├── Fonts │ │ └── Anonymous Pro.ttf │ ├── Materials │ │ └── DefaultGrey.xml │ ├── Models │ │ ├── Box.mdl │ │ ├── Cone.mdl │ │ ├── Cylinder.mdl │ │ ├── Dome.mdl │ │ ├── LinePrimitives │ │ │ ├── Basis.mdl │ │ │ ├── Box1x1x1.mdl │ │ │ ├── CubicBezier.mdl │ │ │ ├── LinearBezier.mdl │ │ │ ├── QuadraticBezier.mdl │ │ │ ├── UnitX.mdl │ │ │ ├── UnitY.mdl │ │ │ └── UnitZ.mdl │ │ ├── Plane.mdl │ │ ├── Pyramid.mdl │ │ ├── Sphere.mdl │ │ └── Torus.mdl │ ├── PostProcess │ │ ├── AutoExposure.xml │ │ ├── Bloom.xml │ │ ├── BloomHDR.xml │ │ ├── Blur.xml │ │ ├── ColorCorrection.xml │ │ ├── FXAA2.xml │ │ ├── FXAA3.xml │ │ ├── GammaCorrection.xml │ │ ├── GreyScale.xml │ │ └── Tonemap.xml │ ├── RenderPaths │ │ ├── Deferred.xml │ │ ├── DeferredHWDepth.xml │ │ ├── Forward.xml │ │ ├── ForwardDepth.xml │ │ ├── ForwardHWDepth.xml │ │ ├── PBRDeferred.xml │ │ ├── PBRDeferredHWDepth.xml │ │ ├── Prepass.xml │ │ ├── PrepassHDR.xml │ │ └── PrepassHWDepth.xml │ ├── Shaders │ │ ├── GLSL │ │ │ ├── ARCore.glsl │ │ │ ├── ARKit.glsl │ │ │ ├── ARTile.glsl │ │ │ ├── AutoExposure.glsl │ │ │ ├── BRDF.glsl │ │ │ ├── Basic.glsl │ │ │ ├── Bloom.glsl │ │ │ ├── BloomHDR.glsl │ │ │ ├── Blur.glsl │ │ │ ├── ColorCorrection.glsl │ │ │ ├── Constants.glsl │ │ │ ├── CopyFramebuffer.glsl │ │ │ ├── DeferredLight.glsl │ │ │ ├── Depth.glsl │ │ │ ├── FXAA2.glsl │ │ │ ├── FXAA3.glsl │ │ │ ├── Fog.glsl │ │ │ ├── GammaCorrection.glsl │ │ │ ├── GreyScale.glsl │ │ │ ├── IBL.glsl │ │ │ ├── Lighting.glsl │ │ │ ├── LitParticle.glsl │ │ │ ├── LitSolid.glsl │ │ │ ├── PBR.glsl │ │ │ ├── PBRDeferred.glsl │ │ │ ├── PBRLitSolid.glsl │ │ │ ├── PostProcess.glsl │ │ │ ├── PrepassLight.glsl │ │ │ ├── Samplers.glsl │ │ │ ├── ScreenPos.glsl │ │ │ ├── Shadow.glsl │ │ │ ├── ShadowBlur.glsl │ │ │ ├── Skybox.glsl │ │ │ ├── Skydome.glsl │ │ │ ├── Stencil.glsl │ │ │ ├── TerrainBlend.glsl │ │ │ ├── Text.glsl │ │ │ ├── Tonemap.glsl │ │ │ ├── Transform.glsl │ │ │ ├── Uniforms.glsl │ │ │ ├── Unlit.glsl │ │ │ ├── UnlitParticle.glsl │ │ │ ├── Urho2D.glsl │ │ │ ├── Vegetation.glsl │ │ │ ├── VegetationDepth.glsl │ │ │ ├── VegetationShadow.glsl │ │ │ └── Water.glsl │ │ └── HLSL │ │ │ ├── AutoExposure.hlsl │ │ │ ├── BRDF.hlsl │ │ │ ├── Basic.hlsl │ │ │ ├── Bloom.hlsl │ │ │ ├── BloomHDR.hlsl │ │ │ ├── Blur.hlsl │ │ │ ├── ClearFramebuffer.hlsl │ │ │ ├── ColorCorrection.hlsl │ │ │ ├── Constants.hlsl │ │ │ ├── CopyFramebuffer.hlsl │ │ │ ├── DeferredLight.hlsl │ │ │ ├── Depth.hlsl │ │ │ ├── FXAA2.hlsl │ │ │ ├── FXAA3.hlsl │ │ │ ├── Fog.hlsl │ │ │ ├── GammaCorrection.hlsl │ │ │ ├── GreyScale.hlsl │ │ │ ├── IBL.hlsl │ │ │ ├── Lighting.hlsl │ │ │ ├── LitParticle.hlsl │ │ │ ├── LitSolid.hlsl │ │ │ ├── PBR.hlsl │ │ │ ├── PBRDeferred.hlsl │ │ │ ├── PBRLitSolid.hlsl │ │ │ ├── PostProcess.hlsl │ │ │ ├── PrepassLight.hlsl │ │ │ ├── Samplers.hlsl │ │ │ ├── ScreenPos.hlsl │ │ │ ├── Shadow.hlsl │ │ │ ├── ShadowBlur.hlsl │ │ │ ├── Skybox.hlsl │ │ │ ├── Skydome.hlsl │ │ │ ├── Stencil.hlsl │ │ │ ├── TerrainBlend.hlsl │ │ │ ├── Text.hlsl │ │ │ ├── Tonemap.hlsl │ │ │ ├── Transform.hlsl │ │ │ ├── Uniforms.hlsl │ │ │ ├── Unlit.hlsl │ │ │ ├── UnlitParticle.hlsl │ │ │ ├── Urho2D.hlsl │ │ │ ├── Vegetation.hlsl │ │ │ ├── VegetationDepth.hlsl │ │ │ ├── VegetationShadow.hlsl │ │ │ └── Water.hlsl │ ├── Techniques │ │ ├── BasicVColUnlitAlpha.xml │ │ ├── Diff.xml │ │ ├── DiffAO.xml │ │ ├── DiffAOAlpha.xml │ │ ├── DiffAdd.xml │ │ ├── DiffAddAlpha.xml │ │ ├── DiffAlpha.xml │ │ ├── DiffAlphaTranslucent.xml │ │ ├── DiffEmissive.xml │ │ ├── DiffEmissiveAlpha.xml │ │ ├── DiffEnvCube.xml │ │ ├── DiffEnvCubeAO.xml │ │ ├── DiffEnvCubeAOAlpha.xml │ │ ├── DiffEnvCubeAlpha.xml │ │ ├── DiffLightMap.xml │ │ ├── DiffLightMapAlpha.xml │ │ ├── DiffLitParticleAlpha.xml │ │ ├── DiffLitParticleAlphaSoft.xml │ │ ├── DiffLitParticleAlphaSoftExpand.xml │ │ ├── DiffMultiply.xml │ │ ├── DiffNormal.xml │ │ ├── DiffNormalAO.xml │ │ ├── DiffNormalAOAlpha.xml │ │ ├── DiffNormalAlpha.xml │ │ ├── DiffNormalAlphaTranslucent.xml │ │ ├── DiffNormalEmissive.xml │ │ ├── DiffNormalEmissiveAlpha.xml │ │ ├── DiffNormalEnvCube.xml │ │ ├── DiffNormalEnvCubeAlpha.xml │ │ ├── DiffNormalSpec.xml │ │ ├── DiffNormalSpecAO.xml │ │ ├── DiffNormalSpecAOAlpha.xml │ │ ├── DiffNormalSpecAlpha.xml │ │ ├── DiffNormalSpecEmissive.xml │ │ ├── DiffNormalSpecEmissiveAlpha.xml │ │ ├── DiffOverlay.xml │ │ ├── DiffSkybox.xml │ │ ├── DiffSkyboxHDRScale.xml │ │ ├── DiffSkydome.xml │ │ ├── DiffSkyplane.xml │ │ ├── DiffSpec.xml │ │ ├── DiffSpecAlpha.xml │ │ ├── DiffUnlit.xml │ │ ├── DiffUnlitAlpha.xml │ │ ├── DiffUnlitParticleAdd.xml │ │ ├── DiffUnlitParticleAddSoft.xml │ │ ├── DiffUnlitParticleAddSoftExpand.xml │ │ ├── DiffUnlitParticleAlpha.xml │ │ ├── DiffUnlitParticleAlphaSoft.xml │ │ ├── DiffUnlitParticleAlphaSoftExpand.xml │ │ ├── DiffVCol.xml │ │ ├── DiffVColAdd.xml │ │ ├── DiffVColAddAlpha.xml │ │ ├── DiffVColMultiply.xml │ │ ├── DiffVColUnlitAlpha.xml │ │ ├── NoTexture.xml │ │ ├── NoTextureAO.xml │ │ ├── NoTextureAOAlpha.xml │ │ ├── NoTextureAdd.xml │ │ ├── NoTextureAddAlpha.xml │ │ ├── NoTextureAlpha.xml │ │ ├── NoTextureEnvCube.xml │ │ ├── NoTextureEnvCubeAO.xml │ │ ├── NoTextureEnvCubeAOAlpha.xml │ │ ├── NoTextureEnvCubeAlpha.xml │ │ ├── NoTextureMultiply.xml │ │ ├── NoTextureNormal.xml │ │ ├── NoTextureNormalAlpha.xml │ │ ├── NoTextureOverlay.xml │ │ ├── NoTextureUnlit.xml │ │ ├── NoTextureUnlitAlpha.xml │ │ ├── NoTextureUnlitVCol.xml │ │ ├── NoTextureVCol.xml │ │ ├── NoTextureVColAdd.xml │ │ ├── NoTextureVColAddAlpha.xml │ │ ├── NoTextureVColMultiply.xml │ │ ├── PBR │ │ │ ├── DiffNormalSpecEmissive.xml │ │ │ ├── DiffNormalSpecEmissiveAlpha.xml │ │ │ ├── PBRDiff.xml │ │ │ ├── PBRDiffAlpha.xml │ │ │ ├── PBRDiffNormal.xml │ │ │ ├── PBRDiffNormalAlpha.xml │ │ │ ├── PBRDiffNormalEmissive.xml │ │ │ ├── PBRDiffNormalEmissiveAlpha.xml │ │ │ ├── PBRMetallicRoughDiffNormalSpec.xml │ │ │ ├── PBRMetallicRoughDiffNormalSpecEmissive.xml │ │ │ ├── PBRMetallicRoughDiffNormalSpecEmissiveAlpha.xml │ │ │ ├── PBRMetallicRoughDiffSpec.xml │ │ │ ├── PBRMetallicRoughDiffSpecAlpha.xml │ │ │ ├── PBRNoTexture.xml │ │ │ └── PBRNoTextureAlpha.xml │ │ ├── TerrainBlend.xml │ │ ├── VegetationDiff.xml │ │ ├── VegetationDiffUnlit.xml │ │ └── Water.xml │ ├── Textures │ │ ├── DefaultUI.png │ │ ├── LUTIdentity.png │ │ ├── LUTIdentity.xml │ │ ├── PlaneTile.png │ │ ├── Ramp.png │ │ ├── Ramp.xml │ │ ├── RampExtreme.png │ │ ├── RampExtreme.xml │ │ ├── RampWide.png │ │ ├── RampWide.xml │ │ ├── Spot.png │ │ ├── Spot.xml │ │ ├── SpotWide.png │ │ ├── SpotWide.xml │ │ ├── TouchInput.png │ │ ├── UI.png │ │ └── UI.xml │ └── UI │ │ ├── DefaultStyle.xml │ │ ├── MessageBox.xml │ │ ├── ScreenJoystick.xml │ │ └── ScreenJoystick2.xml ├── Urho3D_Android │ └── Sdl │ │ ├── SDLActivity.java │ │ └── SDLSurface.java ├── Urho3D_Mac │ └── Readme.md ├── Urho3D_SharpReality │ └── UrhoSharp.SharpReality │ │ ├── PlaneFinding │ │ ├── FindPlanes.cpp │ │ ├── HalfEdgeMesh.cpp │ │ ├── HalfEdgeMesh.h │ │ ├── MathHelpers.h │ │ ├── MergePlanes.cpp │ │ ├── NBest.h │ │ ├── PCAHelper.cpp │ │ ├── PCAHelper.h │ │ ├── PlaneFinding.h │ │ ├── Util.cpp │ │ ├── Util.h │ │ ├── dllmain.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── targetver.h │ │ ├── UrhoHolo.cpp │ │ ├── UrhoHolo.h │ │ ├── UrhoSharp.SharpReality.vcxproj │ │ ├── UrhoSharp.SharpReality.vcxproj.filters │ │ └── UrhoSharp.SharpReality_TemporaryKey.pfx ├── Urho3D_UWP │ └── MonoUrho.UWP │ │ ├── MonoUrho.UWP.vcxproj │ │ ├── MonoUrho.UWP.vcxproj.filters │ │ ├── SdlStub │ │ └── SDL │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_psp.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── UrhoUWP.cpp │ │ └── UrhoUWP.h └── Urho3D_Windows │ └── MonoUrho.Windows │ ├── MonoUrho.Windows.vcxproj │ ├── MonoUrho.Windows.vcxproj.filters │ ├── MonoUrho.WindowsD3D.vcxproj │ └── MonoUrho.WindowsD3D.vcxproj.filters ├── UrhoSharp.png └── docs ├── Urho.Actions ├── RotateAroundBy.xml └── RotateAroundByState.xml ├── Urho ├── AnimationBlendMode.xml ├── AnimationFinishedEventArgs.xml ├── ClickEndEventArgs.xml ├── ClickEventArgs.xml ├── ConvexData.xml ├── CoreAssets+Fonts.xml ├── CoreAssets+Materials.xml ├── CoreAssets+Models.xml ├── CoreAssets+RenderPaths.xml ├── CoreAssets+Techniques+PBR.xml ├── CoreAssets+Techniques.xml ├── CoreAssets+Textures.xml ├── CoreAssets.xml ├── CrowdAgentNodeFailureEventArgs.xml ├── CrowdAgentNodeFormationEventArgs.xml ├── CrowdAgentNodeRepositionEventArgs.xml ├── CrowdAgentNodeStateChangedEventArgs.xml ├── DoubleClickEventArgs.xml ├── FONT_TYPE.xml ├── HashBase.xml ├── HeightfieldData.xml ├── LegacyVertexElement.xml ├── LogSharpLevel.xml ├── NavigationPathPointFlag.xml ├── NodeTagAddedEventArgs.xml ├── NodeTagRemovedEventArgs.xml ├── ParticleEffectFinishedEventArgs.xml ├── Sdl.xml ├── SdlEventType.xml ├── SdlWindowEvent.xml ├── ShadowQuality.xml ├── SoundFinishedEventArgs.xml ├── TriangleMeshData.xml ├── VertexElementSemantic.xml └── VertexElementType.xml ├── ns-Urho.Desktop.xml └── ns-Urho.Repl.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/.gitmodules -------------------------------------------------------------------------------- /Bindings/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.mdb 3 | *.pch 4 | -------------------------------------------------------------------------------- /Bindings/Android/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Android/Metadata.xml -------------------------------------------------------------------------------- /Bindings/Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bindings/Android/UrhoSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Android/UrhoSurface.cs -------------------------------------------------------------------------------- /Bindings/Forms.UWP/UwpSurfaceRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Forms.UWP/UwpSurfaceRenderer.cs -------------------------------------------------------------------------------- /Bindings/Forms.iOS/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Forms.iOS/ApiDefinition.cs -------------------------------------------------------------------------------- /Bindings/Forms.iOS/IosSurfaceRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Forms.iOS/IosSurfaceRenderer.cs -------------------------------------------------------------------------------- /Bindings/Forms.iOS/StructsAndEnums.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Urho.iOS 4 | { 5 | } -------------------------------------------------------------------------------- /Bindings/Forms.iOS/Urho.framework.linkwith.cs: -------------------------------------------------------------------------------- 1 | using ObjCRuntime; 2 | 3 | [assembly: LinkWith ("Urho.framework")] -------------------------------------------------------------------------------- /Bindings/Forms/UrhoSharp.Forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Forms/UrhoSharp.Forms.csproj -------------------------------------------------------------------------------- /Bindings/Forms/UrhoSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Forms/UrhoSurface.cs -------------------------------------------------------------------------------- /Bindings/Native/AllUrho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/AllUrho.h -------------------------------------------------------------------------------- /Bindings/Native/ApplicationProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/ApplicationProxy.cpp -------------------------------------------------------------------------------- /Bindings/Native/ApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/ApplicationProxy.h -------------------------------------------------------------------------------- /Bindings/Native/all-urho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/all-urho.cpp -------------------------------------------------------------------------------- /Bindings/Native/asserts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/asserts.h -------------------------------------------------------------------------------- /Bindings/Native/asserts_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/asserts_32.h -------------------------------------------------------------------------------- /Bindings/Native/asserts_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/asserts_64.h -------------------------------------------------------------------------------- /Bindings/Native/glue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/glue.cpp -------------------------------------------------------------------------------- /Bindings/Native/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/glue.h -------------------------------------------------------------------------------- /Bindings/Native/interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/interop.h -------------------------------------------------------------------------------- /Bindings/Native/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Native/vector.cpp -------------------------------------------------------------------------------- /Bindings/NetStandard/UrhoSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/NetStandard/UrhoSharp.csproj -------------------------------------------------------------------------------- /Bindings/ParseEvents.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/ParseEvents.pl -------------------------------------------------------------------------------- /Bindings/Portable/Actions/Base/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Actions/Base/Action.cs -------------------------------------------------------------------------------- /Bindings/Portable/Actions/Base/Speed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Actions/Base/Speed.cs -------------------------------------------------------------------------------- /Bindings/Portable/Actions/Ease/EaseIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Actions/Ease/EaseIn.cs -------------------------------------------------------------------------------- /Bindings/Portable/Actions/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Actions/Node.cs -------------------------------------------------------------------------------- /Bindings/Portable/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Application.cs -------------------------------------------------------------------------------- /Bindings/Portable/ApplicationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/ApplicationOptions.cs -------------------------------------------------------------------------------- /Bindings/Portable/AttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/AttributeInfo.cs -------------------------------------------------------------------------------- /Bindings/Portable/BillboardSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/BillboardSet.cs -------------------------------------------------------------------------------- /Bindings/Portable/BufferedSoundStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/BufferedSoundStream.cs -------------------------------------------------------------------------------- /Bindings/Portable/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Camera.cs -------------------------------------------------------------------------------- /Bindings/Portable/Collision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Collision.cs -------------------------------------------------------------------------------- /Bindings/Portable/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Component.cs -------------------------------------------------------------------------------- /Bindings/Portable/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Connection.cs -------------------------------------------------------------------------------- /Bindings/Portable/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Consts.cs -------------------------------------------------------------------------------- /Bindings/Portable/Controls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Controls.cs -------------------------------------------------------------------------------- /Bindings/Portable/CoreData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/CoreData.cs -------------------------------------------------------------------------------- /Bindings/Portable/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Enums.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/IntVector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/IntVector2.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/IntVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/IntVector3.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/MathHelper.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/Matrix3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/Matrix3.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/Matrix4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/Matrix4.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/Plane.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/Quaternion.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/README.md -------------------------------------------------------------------------------- /Bindings/Portable/External/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/Vector2.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/Vector3.cs -------------------------------------------------------------------------------- /Bindings/Portable/External/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/External/Vector4.cs -------------------------------------------------------------------------------- /Bindings/Portable/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/File.cs -------------------------------------------------------------------------------- /Bindings/Portable/Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Frustum.cs -------------------------------------------------------------------------------- /Bindings/Portable/GPUObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/GPUObject.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Animation.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Audio.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/BlendMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/BlendMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Button.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Camera.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/CheckBox.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Component.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Context.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Corner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Corner.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/CullMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/CullMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Cursor.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/CurveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/CurveType.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/DebugHud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/DebugHud.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/DecalSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/DecalSet.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Drawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Drawable.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Engine.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/FONT_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/FONT_TYPE.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/File.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/FileMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/FileMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/FillMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/FillMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/FocusMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/FocusMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Font.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/FontFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/FontFace.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/FontType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/FontType.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Frustum.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/GPUObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/GPUObject.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Geometry.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Graphics.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Image.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Input.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/JsonFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/JsonFile.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Light.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Light.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/LightType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/LightType.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/LineEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/LineEdit.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/ListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/ListView.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/LoadMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/LoadMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/LockState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/LockState.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Log.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/LoopMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/LoopMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Material.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Menu.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Model.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/MouseMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/MouseMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/NavArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/NavArea.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Navigable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Navigable.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Network.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Node.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Obstacle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Obstacle.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Octree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Octree.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/PListFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/PListFile.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Pass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Pass.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Profiler.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/RefCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/RefCount.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Renderer.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Resource.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/RigidBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/RigidBody.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Scene.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/ScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/ScrollBar.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Shader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Shader.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/ShapeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/ShapeType.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Skeleton.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Skybox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Skybox.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Slider.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Sound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Sound.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Sphere.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Spline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Spline.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Sprite.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Sprite2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Sprite2D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/StencilOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/StencilOp.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Technique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Technique.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Terrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Terrain.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Text.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Text3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Text3D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Texture.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Texture2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Texture2D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Texture3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Texture3D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Tile2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Tile2D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/TileMap2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/TileMap2D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Time.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/TmxFile2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/TmxFile2D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/ToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/ToolTip.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/TrailType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/TrailType.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/UI.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/UIBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/UIBatch.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/UIElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/UIElement.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/View.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/View3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/View3D.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Viewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Viewport.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Window.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/WorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/WorkItem.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/WorkQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/WorkQueue.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/WrapMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/WrapMode.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/XmlFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/XmlFile.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/Zone.cs -------------------------------------------------------------------------------- /Bindings/Portable/Generated/binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/binding.cpp -------------------------------------------------------------------------------- /Bindings/Portable/Generated/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Generated/events.cpp -------------------------------------------------------------------------------- /Bindings/Portable/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Graphics.cs -------------------------------------------------------------------------------- /Bindings/Portable/IAbstractFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/IAbstractFile.cs -------------------------------------------------------------------------------- /Bindings/Portable/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Image.cs -------------------------------------------------------------------------------- /Bindings/Portable/IndexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/IndexBuffer.cs -------------------------------------------------------------------------------- /Bindings/Portable/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Input.cs -------------------------------------------------------------------------------- /Bindings/Portable/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Log.cs -------------------------------------------------------------------------------- /Bindings/Portable/LogSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/LogSharp.cs -------------------------------------------------------------------------------- /Bindings/Portable/LogicComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/LogicComponent.cs -------------------------------------------------------------------------------- /Bindings/Portable/MarshalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/MarshalHelper.cs -------------------------------------------------------------------------------- /Bindings/Portable/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Material.cs -------------------------------------------------------------------------------- /Bindings/Portable/Math/EaseMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Math/EaseMath.cs -------------------------------------------------------------------------------- /Bindings/Portable/Math/SplineMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Math/SplineMath.cs -------------------------------------------------------------------------------- /Bindings/Portable/MemoryBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/MemoryBuffer.cs -------------------------------------------------------------------------------- /Bindings/Portable/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Model.cs -------------------------------------------------------------------------------- /Bindings/Portable/MonoDebugHud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/MonoDebugHud.cs -------------------------------------------------------------------------------- /Bindings/Portable/NavigationMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/NavigationMesh.cs -------------------------------------------------------------------------------- /Bindings/Portable/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Network.cs -------------------------------------------------------------------------------- /Bindings/Portable/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Node.cs -------------------------------------------------------------------------------- /Bindings/Portable/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Object.cs -------------------------------------------------------------------------------- /Bindings/Portable/Octree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Octree.cs -------------------------------------------------------------------------------- /Bindings/Portable/PodVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/PodVector.cs -------------------------------------------------------------------------------- /Bindings/Portable/Polyhedron.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Polyhedron.cs -------------------------------------------------------------------------------- /Bindings/Portable/Randoms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Randoms.cs -------------------------------------------------------------------------------- /Bindings/Portable/RefCounted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/RefCounted.cs -------------------------------------------------------------------------------- /Bindings/Portable/RenderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/RenderPath.cs -------------------------------------------------------------------------------- /Bindings/Portable/ResourceCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/ResourceCache.cs -------------------------------------------------------------------------------- /Bindings/Portable/Runtime/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Runtime/Runtime.cs -------------------------------------------------------------------------------- /Bindings/Portable/Runtime/Vectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Runtime/Vectors.cs -------------------------------------------------------------------------------- /Bindings/Portable/SDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/SDL.cs -------------------------------------------------------------------------------- /Bindings/Portable/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Scene.cs -------------------------------------------------------------------------------- /Bindings/Portable/ScriptInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/ScriptInstance.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Box.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Cone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Cone.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Cylinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Cylinder.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Plane.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Pyramid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Pyramid.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Shape.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Sphere.cs -------------------------------------------------------------------------------- /Bindings/Portable/Shapes/Torus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Shapes/Torus.cs -------------------------------------------------------------------------------- /Bindings/Portable/SimpleApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/SimpleApplication.cs -------------------------------------------------------------------------------- /Bindings/Portable/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Skeleton.cs -------------------------------------------------------------------------------- /Bindings/Portable/StaticModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/StaticModel.cs -------------------------------------------------------------------------------- /Bindings/Portable/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/String.cs -------------------------------------------------------------------------------- /Bindings/Portable/StringHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/StringHash.cs -------------------------------------------------------------------------------- /Bindings/Portable/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Structs.cs -------------------------------------------------------------------------------- /Bindings/Portable/Stubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Stubs.cs -------------------------------------------------------------------------------- /Bindings/Portable/Texture2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Texture2D.cs -------------------------------------------------------------------------------- /Bindings/Portable/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/UI.cs -------------------------------------------------------------------------------- /Bindings/Portable/UIComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/UIComponent.cs -------------------------------------------------------------------------------- /Bindings/Portable/UIElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/UIElement.cs -------------------------------------------------------------------------------- /Bindings/Portable/UrhoConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/UrhoConsole.cs -------------------------------------------------------------------------------- /Bindings/Portable/UrhoMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/UrhoMap.cs -------------------------------------------------------------------------------- /Bindings/Portable/VertexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/VertexBuffer.cs -------------------------------------------------------------------------------- /Bindings/Portable/Viewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/Viewport.cs -------------------------------------------------------------------------------- /Bindings/Portable/WirePlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/WirePlane.cs -------------------------------------------------------------------------------- /Bindings/Portable/XmlElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Portable/XmlElement.cs -------------------------------------------------------------------------------- /Bindings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bindings/Properties/Urho.UWP.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Properties/Urho.UWP.rd.xml -------------------------------------------------------------------------------- /Bindings/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bindings/SharpReality/UrhoAppView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/SharpReality/UrhoAppView.cs -------------------------------------------------------------------------------- /Bindings/SharpReality/VoiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/SharpReality/VoiceManager.cs -------------------------------------------------------------------------------- /Bindings/SharpReality/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/SharpReality/project.json -------------------------------------------------------------------------------- /Bindings/UWP/UrhoSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/UWP/UrhoSurface.cs -------------------------------------------------------------------------------- /Bindings/UWP/UwpUrhoInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/UWP/UwpUrhoInitializer.cs -------------------------------------------------------------------------------- /Bindings/UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/UWP/project.json -------------------------------------------------------------------------------- /Bindings/Urho.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Urho.Shared.projitems -------------------------------------------------------------------------------- /Bindings/Urho.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/Urho.Shared.shproj -------------------------------------------------------------------------------- /Bindings/events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/events.txt -------------------------------------------------------------------------------- /Bindings/iOS/ARKitComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/iOS/ARKitComponent.cs -------------------------------------------------------------------------------- /Bindings/iOS/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/iOS/ApiDefinition.cs -------------------------------------------------------------------------------- /Bindings/iOS/StructsAndEnums.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Urho.iOS 4 | { 5 | } -------------------------------------------------------------------------------- /Bindings/iOS/Urho.framework.linkwith.cs: -------------------------------------------------------------------------------- 1 | using ObjCRuntime; 2 | 3 | [assembly: LinkWith ("Urho.framework")] -------------------------------------------------------------------------------- /Bindings/iOS/Urho.framework.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/iOS/Urho.framework.plist -------------------------------------------------------------------------------- /Bindings/iOS/UrhoSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Bindings/iOS/UrhoSurface.cs -------------------------------------------------------------------------------- /Docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/.gitignore -------------------------------------------------------------------------------- /Docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Makefile -------------------------------------------------------------------------------- /Docs/PreserveAttribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/PreserveAttribute.xml -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/README.md -------------------------------------------------------------------------------- /Docs/Urho.Actions/ActionEase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ActionEase.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ActionEaseState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ActionEaseState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ActionInstant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ActionInstant.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ActionManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ActionManager.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ActionState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ActionState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ActionTag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ActionTag.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ActionTween.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ActionTween.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/AmplitudeAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/AmplitudeAction.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/BaseAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/BaseAction.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/BezierBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/BezierBy.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/BezierByState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/BezierByState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/BezierConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/BezierConfig.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/BezierTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/BezierTo.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/BezierToState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/BezierToState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Blink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Blink.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/BlinkState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/BlinkState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFunc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFunc.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFuncN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFuncN.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFuncND.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFuncND.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFuncNDState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFuncNDState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFuncNState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFuncNState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFuncO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFuncO.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFuncOState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFuncOState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/CallFuncState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/CallFuncState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/DelayTime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/DelayTime.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/DelayTimeState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/DelayTimeState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseBackIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseBackIn.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseBackInOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseBackInOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseBackInState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseBackInState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseBackOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseBackOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseBounceIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseBounceIn.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseBounceInOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseBounceInOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseBounceOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseBounceOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseCustom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseCustom.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseCustomState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseCustomState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseElastic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseElastic.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseElasticIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseElasticIn.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseElasticOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseElasticOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseIn.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseInOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseInOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseInOutState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseInOutState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseInState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseInState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseOutState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseOutState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseRateAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseRateAction.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseSineIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseSineIn.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseSineInOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseSineInOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseSineInState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseSineInState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/EaseSineOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/EaseSineOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/FadeIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/FadeIn.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/FadeInState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/FadeInState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/FadeOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/FadeOut.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/FadeOutState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/FadeOutState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/FadeTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/FadeTo.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/FadeToState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/FadeToState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Hide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Hide.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/HideState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/HideState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/JumpBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/JumpBy.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/JumpByState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/JumpByState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/JumpTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/JumpTo.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/JumpToState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/JumpToState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/MoveBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/MoveBy.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/MoveByState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/MoveByState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/MoveTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/MoveTo.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/MoveToState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/MoveToState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Parallel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Parallel.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ParallelState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ParallelState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Place.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Place.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/PlaceState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/PlaceState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RemoveSelf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RemoveSelf.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RemoveSelfState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RemoveSelfState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Repeat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Repeat.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RepeatForever.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RepeatForever.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RepeatState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RepeatState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ReverseTime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ReverseTime.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RotateBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RotateBy.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RotateByState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RotateByState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RotateTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RotateTo.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/RotateToState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/RotateToState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ScaleBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ScaleBy.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ScaleByState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ScaleByState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ScaleTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ScaleTo.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ScaleToState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ScaleToState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Sequence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Sequence.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/SequenceState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/SequenceState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Show.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/ShowState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/ShowState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Spawn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Spawn.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/SpawnState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/SpawnState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/Speed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/Speed.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/TargetedAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/TargetedAction.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/TintBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/TintBy.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/TintByState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/TintByState.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/TintTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/TintTo.xml -------------------------------------------------------------------------------- /Docs/Urho.Actions/TintToState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Actions/TintToState.xml -------------------------------------------------------------------------------- /Docs/Urho.Audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Audio/Audio.xml -------------------------------------------------------------------------------- /Docs/Urho.Audio/Sound.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Audio/Sound.xml -------------------------------------------------------------------------------- /Docs/Urho.Audio/SoundListener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Audio/SoundListener.xml -------------------------------------------------------------------------------- /Docs/Urho.Audio/SoundSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Audio/SoundSource.xml -------------------------------------------------------------------------------- /Docs/Urho.Audio/SoundSource3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Audio/SoundSource3D.xml -------------------------------------------------------------------------------- /Docs/Urho.Audio/SoundStream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Audio/SoundStream.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/BorderImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/BorderImage.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Button.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/CheckBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/CheckBox.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Corner.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Cursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Cursor.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/CursorShape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/CursorShape.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/DefocusedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/DefocusedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/DragBeginEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/DragBeginEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/DragCancelEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/DragCancelEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/DragEndEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/DragEndEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/DragMoveEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/DragMoveEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/DropDownList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/DropDownList.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/FileSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/FileSelector.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/FocusMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/FocusMode.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/FocusedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/FocusedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Font.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/FontFace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/FontFace.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/FontFaceBitmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/FontFaceBitmap.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/FontFaceFreeType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/FontFaceFreeType.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/HighlightMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/HighlightMode.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/HorizontalAlignment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/HorizontalAlignment.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/HoverBeginEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/HoverBeginEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/HoverEndEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/HoverEndEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/LayoutMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/LayoutMode.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/LineEdit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/LineEdit.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/ListView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/ListView.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Menu.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/MessageACKEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/MessageACKEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/MessageBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/MessageBox.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Orientation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Orientation.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/PositionedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/PositionedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/PressedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/PressedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/ReleasedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/ReleasedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/ResizedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/ResizedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/ScrollBar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/ScrollBar.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/ScrollView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/ScrollView.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Slider.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Sprite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Sprite.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Text.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Text3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Text3D.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/TextEffect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/TextEffect.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/TextEntryEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/TextEntryEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/ToggledEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/ToggledEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/ToolTip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/ToolTip.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/TraversalMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/TraversalMode.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/UI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/UI.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/UIDropFileEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/UIDropFileEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/UIElement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/UIElement.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/VerticalAlignment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/VerticalAlignment.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/View3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/View3D.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/Window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/Window.xml -------------------------------------------------------------------------------- /Docs/Urho.Gui/WindowDragMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Gui/WindowDragMode.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/File.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/FileMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/FileMode.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/FileSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/FileSystem.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/FileWatcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/FileWatcher.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/Log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/Log.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/LogMessageEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/LogMessageEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/PackageEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/PackageEntry.xml -------------------------------------------------------------------------------- /Docs/Urho.IO/PackageFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.IO/PackageFile.xml -------------------------------------------------------------------------------- /Docs/Urho.Navigation/CrowdAgent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Navigation/CrowdAgent.xml -------------------------------------------------------------------------------- /Docs/Urho.Navigation/CrowdManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Navigation/CrowdManager.xml -------------------------------------------------------------------------------- /Docs/Urho.Navigation/NavArea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Navigation/NavArea.xml -------------------------------------------------------------------------------- /Docs/Urho.Navigation/Navigable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Navigation/Navigable.xml -------------------------------------------------------------------------------- /Docs/Urho.Navigation/Obstacle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Navigation/Obstacle.xml -------------------------------------------------------------------------------- /Docs/Urho.Network/Connection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Network/Connection.xml -------------------------------------------------------------------------------- /Docs/Urho.Network/DirtyBits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Network/DirtyBits.xml -------------------------------------------------------------------------------- /Docs/Urho.Network/HttpRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Network/HttpRequest.xml -------------------------------------------------------------------------------- /Docs/Urho.Network/Network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Network/Network.xml -------------------------------------------------------------------------------- /Docs/Urho.Network/NetworkPriority.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Network/NetworkPriority.xml -------------------------------------------------------------------------------- /Docs/Urho.Physics/CollisionData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Physics/CollisionData.xml -------------------------------------------------------------------------------- /Docs/Urho.Physics/CollisionShape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Physics/CollisionShape.xml -------------------------------------------------------------------------------- /Docs/Urho.Physics/Constraint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Physics/Constraint.xml -------------------------------------------------------------------------------- /Docs/Urho.Physics/ConstraintType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Physics/ConstraintType.xml -------------------------------------------------------------------------------- /Docs/Urho.Physics/PhysicsWorld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Physics/PhysicsWorld.xml -------------------------------------------------------------------------------- /Docs/Urho.Physics/RigidBody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Physics/RigidBody.xml -------------------------------------------------------------------------------- /Docs/Urho.Physics/ShapeType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Physics/ShapeType.xml -------------------------------------------------------------------------------- /Docs/Urho.Portable/ScriptInstance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Portable/ScriptInstance.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/Image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/Image.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/JsonFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/JsonFile.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/JsonValueType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/JsonValueType.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/Localization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/Localization.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/PListFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/PListFile.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/Resource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/Resource.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/ResourceCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/ResourceCache.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/XmlElement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/XmlElement.xml -------------------------------------------------------------------------------- /Docs/Urho.Resources/XmlFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Resources/XmlFile.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Box.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Cone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Cone.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Cylinder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Cylinder.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Plane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Plane.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Pyramid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Pyramid.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Shape.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Sphere.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Sphere.xml -------------------------------------------------------------------------------- /Docs/Urho.Shapes/Torus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Shapes/Torus.xml -------------------------------------------------------------------------------- /Docs/Urho.SharpReality/DebugGrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.SharpReality/DebugGrid.xml -------------------------------------------------------------------------------- /Docs/Urho.SharpReality/YuvVideo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.SharpReality/YuvVideo.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/AnimatedSprite2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/AnimatedSprite2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/AnimationSet2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/AnimationSet2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/BodyType2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/BodyType2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/CollisionBox2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/CollisionBox2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/CollisionChain2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/CollisionChain2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/CollisionEdge2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/CollisionEdge2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/CollisionShape2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/CollisionShape2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/Constraint2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/Constraint2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/ConstraintGear2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/ConstraintGear2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/ConstraintRope2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/ConstraintRope2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/ConstraintWeld2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/ConstraintWeld2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/CurveType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/CurveType.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/Drawable2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/Drawable2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/EmitterType2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/EmitterType2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/LoopMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/LoopMode.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/LoopMode2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/LoopMode2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/Orientation2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/Orientation2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/ParticleEffect2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/ParticleEffect2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/PhysicsWorld2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/PhysicsWorld2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/PropertySet2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/PropertySet2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/Renderer2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/Renderer2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/RigidBody2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/RigidBody2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/Sprite2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/Sprite2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/SpriteSheet2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/SpriteSheet2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/StaticSprite2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/StaticSprite2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/Texture2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/Texture2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/Tile2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/Tile2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TileMap2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TileMap2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TileMapInfo2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TileMapInfo2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TileMapLayer2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TileMapLayer2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TileMapObject2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TileMapObject2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TmxFile2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TmxFile2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TmxImageLayer2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TmxImageLayer2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TmxLayer2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TmxLayer2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TmxObjectGroup2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TmxObjectGroup2D.xml -------------------------------------------------------------------------------- /Docs/Urho.Urho2D/TmxTileLayer2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.Urho2D/TmxTileLayer2D.xml -------------------------------------------------------------------------------- /Docs/Urho.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.source -------------------------------------------------------------------------------- /Docs/Urho.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho.xml -------------------------------------------------------------------------------- /Docs/Urho/Animatable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Animatable.xml -------------------------------------------------------------------------------- /Docs/Urho/AnimatedModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AnimatedModel.xml -------------------------------------------------------------------------------- /Docs/Urho/Animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Animation.xml -------------------------------------------------------------------------------- /Docs/Urho/AnimationController.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AnimationController.xml -------------------------------------------------------------------------------- /Docs/Urho/AnimationState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AnimationState.xml -------------------------------------------------------------------------------- /Docs/Urho/AnimationTrack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AnimationTrack.xml -------------------------------------------------------------------------------- /Docs/Urho/AnimationTriggerPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AnimationTriggerPoint.xml -------------------------------------------------------------------------------- /Docs/Urho/Application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Application.xml -------------------------------------------------------------------------------- /Docs/Urho/ApplicationOptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ApplicationOptions.xml -------------------------------------------------------------------------------- /Docs/Urho/AttributeAccessor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AttributeAccessor.xml -------------------------------------------------------------------------------- /Docs/Urho/AttributeAnimationInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AttributeAnimationInfo.xml -------------------------------------------------------------------------------- /Docs/Urho/AttributeInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AttributeInfo.xml -------------------------------------------------------------------------------- /Docs/Urho/AutoRemoveMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/AutoRemoveMode.xml -------------------------------------------------------------------------------- /Docs/Urho/Bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Bar.xml -------------------------------------------------------------------------------- /Docs/Urho/BeginRenderingEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/BeginRenderingEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/BiasParameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/BiasParameters.xml -------------------------------------------------------------------------------- /Docs/Urho/Billboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Billboard.xml -------------------------------------------------------------------------------- /Docs/Urho/BillboardSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/BillboardSet.xml -------------------------------------------------------------------------------- /Docs/Urho/BillboardWrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/BillboardWrapper.xml -------------------------------------------------------------------------------- /Docs/Urho/BlendMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/BlendMode.xml -------------------------------------------------------------------------------- /Docs/Urho/Bone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Bone.xml -------------------------------------------------------------------------------- /Docs/Urho/BoneWrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/BoneWrapper.xml -------------------------------------------------------------------------------- /Docs/Urho/BoundingBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/BoundingBox.xml -------------------------------------------------------------------------------- /Docs/Urho/Camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Camera.xml -------------------------------------------------------------------------------- /Docs/Urho/CascadeParameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CascadeParameters.xml -------------------------------------------------------------------------------- /Docs/Urho/CollisionGeometryData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CollisionGeometryData.xml -------------------------------------------------------------------------------- /Docs/Urho/Color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Color.xml -------------------------------------------------------------------------------- /Docs/Urho/ColorFrame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ColorFrame.xml -------------------------------------------------------------------------------- /Docs/Urho/CompareMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CompareMode.xml -------------------------------------------------------------------------------- /Docs/Urho/Component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Component.xml -------------------------------------------------------------------------------- /Docs/Urho/ComponentAddedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ComponentAddedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/CompressedLevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CompressedLevel.xml -------------------------------------------------------------------------------- /Docs/Urho/ConsoleCommandEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ConsoleCommandEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/ConstantBuffer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ConstantBuffer.xml -------------------------------------------------------------------------------- /Docs/Urho/Context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Context.xml -------------------------------------------------------------------------------- /Docs/Urho/Controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Controls.xml -------------------------------------------------------------------------------- /Docs/Urho/CoreAssets+PostProcess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CoreAssets+PostProcess.xml -------------------------------------------------------------------------------- /Docs/Urho/CoreAssets+UIs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CoreAssets+UIs.xml -------------------------------------------------------------------------------- /Docs/Urho/CreateMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CreateMode.xml -------------------------------------------------------------------------------- /Docs/Urho/CubeMapFace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CubeMapFace.xml -------------------------------------------------------------------------------- /Docs/Urho/CubeMapLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CubeMapLayout.xml -------------------------------------------------------------------------------- /Docs/Urho/CullMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CullMode.xml -------------------------------------------------------------------------------- /Docs/Urho/CustomGeometry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CustomGeometry.xml -------------------------------------------------------------------------------- /Docs/Urho/CustomGeometryVertex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/CustomGeometryVertex.xml -------------------------------------------------------------------------------- /Docs/Urho/DebugHud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/DebugHud.xml -------------------------------------------------------------------------------- /Docs/Urho/DebugRenderer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/DebugRenderer.xml -------------------------------------------------------------------------------- /Docs/Urho/DecalSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/DecalSet.xml -------------------------------------------------------------------------------- /Docs/Urho/DeviceLostEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/DeviceLostEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/DeviceResetEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/DeviceResetEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Drawable.xml -------------------------------------------------------------------------------- /Docs/Urho/DrawableFlags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/DrawableFlags.xml -------------------------------------------------------------------------------- /Docs/Urho/DropFileEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/DropFileEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/ElementMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ElementMask.xml -------------------------------------------------------------------------------- /Docs/Urho/EmitterType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/EmitterType.xml -------------------------------------------------------------------------------- /Docs/Urho/EndRenderingEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/EndRenderingEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/EndViewRenderEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/EndViewRenderEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/EndViewUpdateEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/EndViewUpdateEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Engine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Engine.xml -------------------------------------------------------------------------------- /Docs/Urho/EventDataContainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/EventDataContainer.xml -------------------------------------------------------------------------------- /Docs/Urho/EventReceiverGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/EventReceiverGroup.xml -------------------------------------------------------------------------------- /Docs/Urho/ExitRequestedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ExitRequestedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/FaceCameraMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FaceCameraMode.xml -------------------------------------------------------------------------------- /Docs/Urho/FillMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FillMode.xml -------------------------------------------------------------------------------- /Docs/Urho/FocusParameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FocusParameters.xml -------------------------------------------------------------------------------- /Docs/Urho/FontGlyph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FontGlyph.xml -------------------------------------------------------------------------------- /Docs/Urho/FontHintLevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FontHintLevel.xml -------------------------------------------------------------------------------- /Docs/Urho/FontType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FontType.xml -------------------------------------------------------------------------------- /Docs/Urho/FrameEndedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FrameEndedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/FrameStartedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FrameStartedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Frustum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Frustum.xml -------------------------------------------------------------------------------- /Docs/Urho/FrustumPlane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/FrustumPlane.xml -------------------------------------------------------------------------------- /Docs/Urho/GImpactMeshData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/GImpactMeshData.xml -------------------------------------------------------------------------------- /Docs/Urho/GPUObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/GPUObject.xml -------------------------------------------------------------------------------- /Docs/Urho/Geometry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Geometry.xml -------------------------------------------------------------------------------- /Docs/Urho/GeometryType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/GeometryType.xml -------------------------------------------------------------------------------- /Docs/Urho/GestureInputEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/GestureInputEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Graphics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Graphics.xml -------------------------------------------------------------------------------- /Docs/Urho/GraphicsImpl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/GraphicsImpl.xml -------------------------------------------------------------------------------- /Docs/Urho/HashIteratorBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/HashIteratorBase.xml -------------------------------------------------------------------------------- /Docs/Urho/IAbstractFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IAbstractFile.xml -------------------------------------------------------------------------------- /Docs/Urho/IDeserializer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IDeserializer.xml -------------------------------------------------------------------------------- /Docs/Urho/IGPUObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IGPUObject.xml -------------------------------------------------------------------------------- /Docs/Urho/ISerializer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ISerializer.xml -------------------------------------------------------------------------------- /Docs/Urho/IUrhoSurface.xml.remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IUrhoSurface.xml.remove -------------------------------------------------------------------------------- /Docs/Urho/IndexBuffer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IndexBuffer.xml -------------------------------------------------------------------------------- /Docs/Urho/Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Input.xml -------------------------------------------------------------------------------- /Docs/Urho/InputBeginEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/InputBeginEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/InputEndEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/InputEndEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/InputFocusEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/InputFocusEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/IntRect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IntRect.xml -------------------------------------------------------------------------------- /Docs/Urho/IntVector2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IntVector2.xml -------------------------------------------------------------------------------- /Docs/Urho/IntVector3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/IntVector3.xml -------------------------------------------------------------------------------- /Docs/Urho/InterpMethod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/InterpMethod.xml -------------------------------------------------------------------------------- /Docs/Urho/InterpolationMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/InterpolationMode.xml -------------------------------------------------------------------------------- /Docs/Urho/Intersection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Intersection.xml -------------------------------------------------------------------------------- /Docs/Urho/Iterator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Iterator.xml -------------------------------------------------------------------------------- /Docs/Urho/JoystickState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/JoystickState.xml -------------------------------------------------------------------------------- /Docs/Urho/Key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Key.xml -------------------------------------------------------------------------------- /Docs/Urho/KeyDownEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/KeyDownEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/KeyUpEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/KeyUpEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Light.xml -------------------------------------------------------------------------------- /Docs/Urho/LightBatchQueue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LightBatchQueue.xml -------------------------------------------------------------------------------- /Docs/Urho/LightPSVariation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LightPSVariation.xml -------------------------------------------------------------------------------- /Docs/Urho/LightType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LightType.xml -------------------------------------------------------------------------------- /Docs/Urho/LightVSVariation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LightVSVariation.xml -------------------------------------------------------------------------------- /Docs/Urho/LoadMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LoadMode.xml -------------------------------------------------------------------------------- /Docs/Urho/LockState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LockState.xml -------------------------------------------------------------------------------- /Docs/Urho/LogLevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LogLevel.xml -------------------------------------------------------------------------------- /Docs/Urho/LogSharp.xml.remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LogSharp.xml.remove -------------------------------------------------------------------------------- /Docs/Urho/LogicComponent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/LogicComponent.xml -------------------------------------------------------------------------------- /Docs/Urho/MarshalHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MarshalHelper.xml -------------------------------------------------------------------------------- /Docs/Urho/Material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Material.xml -------------------------------------------------------------------------------- /Docs/Urho/MathHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MathHelper.xml -------------------------------------------------------------------------------- /Docs/Urho/Matrix3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Matrix3.xml -------------------------------------------------------------------------------- /Docs/Urho/Matrix3x4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Matrix3x4.xml -------------------------------------------------------------------------------- /Docs/Urho/Matrix4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Matrix4.xml -------------------------------------------------------------------------------- /Docs/Urho/MemoryBuffer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MemoryBuffer.xml -------------------------------------------------------------------------------- /Docs/Urho/Model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Model.xml -------------------------------------------------------------------------------- /Docs/Urho/ModelMorph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ModelMorph.xml -------------------------------------------------------------------------------- /Docs/Urho/MonoDebugHud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MonoDebugHud.xml -------------------------------------------------------------------------------- /Docs/Urho/MouseButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MouseButton.xml -------------------------------------------------------------------------------- /Docs/Urho/MouseButtonUpEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MouseButtonUpEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/MouseMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MouseMode.xml -------------------------------------------------------------------------------- /Docs/Urho/MouseMovedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MouseMovedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/MouseWheelEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MouseWheelEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/MultiGestureEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/MultiGestureEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/NetworkState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/NetworkState.xml -------------------------------------------------------------------------------- /Docs/Urho/Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Node.xml -------------------------------------------------------------------------------- /Docs/Urho/NodeAddedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/NodeAddedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/NodeClonedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/NodeClonedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/NodeCollisionEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/NodeCollisionEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/NodeRemovedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/NodeRemovedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/ObjectAnimation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ObjectAnimation.xml -------------------------------------------------------------------------------- /Docs/Urho/ObjectCallbackSignature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ObjectCallbackSignature.xml -------------------------------------------------------------------------------- /Docs/Urho/ObjectFactory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ObjectFactory.xml -------------------------------------------------------------------------------- /Docs/Urho/OcclusionBuffer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/OcclusionBuffer.xml -------------------------------------------------------------------------------- /Docs/Urho/Octant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Octant.xml -------------------------------------------------------------------------------- /Docs/Urho/Octree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Octree.xml -------------------------------------------------------------------------------- /Docs/Urho/ParticleEffect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ParticleEffect.xml -------------------------------------------------------------------------------- /Docs/Urho/ParticleEmitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ParticleEmitter.xml -------------------------------------------------------------------------------- /Docs/Urho/ParticlesEndEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ParticlesEndEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Pass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Pass.xml -------------------------------------------------------------------------------- /Docs/Urho/PassLightingMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/PassLightingMode.xml -------------------------------------------------------------------------------- /Docs/Urho/Plane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Plane.xml -------------------------------------------------------------------------------- /Docs/Urho/Platforms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Platforms.xml -------------------------------------------------------------------------------- /Docs/Urho/PlatformsExtensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/PlatformsExtensions.xml -------------------------------------------------------------------------------- /Docs/Urho/PodVector`1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/PodVector`1.xml -------------------------------------------------------------------------------- /Docs/Urho/Polyhedron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Polyhedron.xml -------------------------------------------------------------------------------- /Docs/Urho/PostUpdateEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/PostUpdateEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/PrimitiveType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/PrimitiveType.xml -------------------------------------------------------------------------------- /Docs/Urho/Profiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Profiler.xml -------------------------------------------------------------------------------- /Docs/Urho/ProfilerBlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ProfilerBlock.xml -------------------------------------------------------------------------------- /Docs/Urho/Quaternion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Quaternion.xml -------------------------------------------------------------------------------- /Docs/Urho/RandomAccessIterator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RandomAccessIterator.xml -------------------------------------------------------------------------------- /Docs/Urho/Randoms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Randoms.xml -------------------------------------------------------------------------------- /Docs/Urho/Ray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Ray.xml -------------------------------------------------------------------------------- /Docs/Urho/RayQueryLevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RayQueryLevel.xml -------------------------------------------------------------------------------- /Docs/Urho/RayQueryResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RayQueryResult.xml -------------------------------------------------------------------------------- /Docs/Urho/Rect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Rect.xml -------------------------------------------------------------------------------- /Docs/Urho/RefCount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RefCount.xml -------------------------------------------------------------------------------- /Docs/Urho/RefCounted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RefCounted.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderCommandSortMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderCommandSortMode.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderCommandType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderCommandType.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderPath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderPath.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderPathCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderPathCommand.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderSurface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderSurface.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderSurfaceUpdateMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderSurfaceUpdateMode.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderTargetSizeMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderTargetSizeMode.xml -------------------------------------------------------------------------------- /Docs/Urho/RenderUpdateEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RenderUpdateEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Renderer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Renderer.xml -------------------------------------------------------------------------------- /Docs/Urho/ResourceRef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ResourceRef.xml -------------------------------------------------------------------------------- /Docs/Urho/ResourceRefList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ResourceRefList.xml -------------------------------------------------------------------------------- /Docs/Urho/ResourceRouter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ResourceRouter.xml -------------------------------------------------------------------------------- /Docs/Urho/ResourceWithMetadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ResourceWithMetadata.xml -------------------------------------------------------------------------------- /Docs/Urho/RibbonTrail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/RibbonTrail.xml -------------------------------------------------------------------------------- /Docs/Urho/SDLRawInputEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SDLRawInputEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/SDL_Event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SDL_Event.xml -------------------------------------------------------------------------------- /Docs/Urho/SDL_Scancode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SDL_Scancode.xml -------------------------------------------------------------------------------- /Docs/Urho/Scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Scene.xml -------------------------------------------------------------------------------- /Docs/Urho/SceneUpdateEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SceneUpdateEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/ScreenModeEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ScreenModeEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/SdlKeyState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SdlKeyState.xml -------------------------------------------------------------------------------- /Docs/Urho/Serializable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Serializable.xml -------------------------------------------------------------------------------- /Docs/Urho/Shader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Shader.xml -------------------------------------------------------------------------------- /Docs/Urho/ShaderParameter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ShaderParameter.xml -------------------------------------------------------------------------------- /Docs/Urho/ShaderParameterGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ShaderParameterGroup.xml -------------------------------------------------------------------------------- /Docs/Urho/ShaderPrecache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ShaderPrecache.xml -------------------------------------------------------------------------------- /Docs/Urho/ShaderProgram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ShaderProgram.xml -------------------------------------------------------------------------------- /Docs/Urho/ShaderType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ShaderType.xml -------------------------------------------------------------------------------- /Docs/Urho/ShaderVariation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ShaderVariation.xml -------------------------------------------------------------------------------- /Docs/Urho/SimpleApplication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SimpleApplication.xml -------------------------------------------------------------------------------- /Docs/Urho/Skeleton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Skeleton.xml -------------------------------------------------------------------------------- /Docs/Urho/Skybox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Skybox.xml -------------------------------------------------------------------------------- /Docs/Urho/SmoothedTransform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SmoothedTransform.xml -------------------------------------------------------------------------------- /Docs/Urho/SoundType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SoundType.xml -------------------------------------------------------------------------------- /Docs/Urho/SplinePath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/SplinePath.xml -------------------------------------------------------------------------------- /Docs/Urho/StaticModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/StaticModel.xml -------------------------------------------------------------------------------- /Docs/Urho/StaticModelGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/StaticModelGroup.xml -------------------------------------------------------------------------------- /Docs/Urho/StencilOp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/StencilOp.xml -------------------------------------------------------------------------------- /Docs/Urho/StringHash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/StringHash.xml -------------------------------------------------------------------------------- /Docs/Urho/StringHashRef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/StringHashRef.xml -------------------------------------------------------------------------------- /Docs/Urho/Subscription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Subscription.xml -------------------------------------------------------------------------------- /Docs/Urho/Technique.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Technique.xml -------------------------------------------------------------------------------- /Docs/Urho/Terrain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Terrain.xml -------------------------------------------------------------------------------- /Docs/Urho/TerrainCreatedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TerrainCreatedEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/TerrainPatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TerrainPatch.xml -------------------------------------------------------------------------------- /Docs/Urho/TextEditingEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextEditingEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/TextInputEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextInputEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/Texture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Texture.xml -------------------------------------------------------------------------------- /Docs/Urho/Texture2DArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Texture2DArray.xml -------------------------------------------------------------------------------- /Docs/Urho/Texture3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Texture3D.xml -------------------------------------------------------------------------------- /Docs/Urho/TextureAddressMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextureAddressMode.xml -------------------------------------------------------------------------------- /Docs/Urho/TextureCoordinate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextureCoordinate.xml -------------------------------------------------------------------------------- /Docs/Urho/TextureCube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextureCube.xml -------------------------------------------------------------------------------- /Docs/Urho/TextureFilterMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextureFilterMode.xml -------------------------------------------------------------------------------- /Docs/Urho/TextureFrame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextureFrame.xml -------------------------------------------------------------------------------- /Docs/Urho/TextureUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextureUnit.xml -------------------------------------------------------------------------------- /Docs/Urho/TextureUsage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TextureUsage.xml -------------------------------------------------------------------------------- /Docs/Urho/Time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Time.xml -------------------------------------------------------------------------------- /Docs/Urho/TouchBeginEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TouchBeginEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/TouchEndEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TouchEndEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/TouchMoveEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TouchMoveEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/TouchState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TouchState.xml -------------------------------------------------------------------------------- /Docs/Urho/TrailType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TrailType.xml -------------------------------------------------------------------------------- /Docs/Urho/TransformSpace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TransformSpace.xml -------------------------------------------------------------------------------- /Docs/Urho/TypeInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/TypeInfo.xml -------------------------------------------------------------------------------- /Docs/Urho/UIComponent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UIComponent.xml -------------------------------------------------------------------------------- /Docs/Urho/UnknownComponent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UnknownComponent.xml -------------------------------------------------------------------------------- /Docs/Urho/UpdateEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UpdateEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/UpdateGeometryType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UpdateGeometryType.xml -------------------------------------------------------------------------------- /Docs/Urho/UrhoConsole.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UrhoConsole.xml -------------------------------------------------------------------------------- /Docs/Urho/UrhoObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UrhoObject.xml -------------------------------------------------------------------------------- /Docs/Urho/UrhoObjectFlag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UrhoObjectFlag.xml -------------------------------------------------------------------------------- /Docs/Urho/UrhoString.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/UrhoString.xml -------------------------------------------------------------------------------- /Docs/Urho/ValueAnimation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ValueAnimation.xml -------------------------------------------------------------------------------- /Docs/Urho/ValueAnimationInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ValueAnimationInfo.xml -------------------------------------------------------------------------------- /Docs/Urho/Variant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Variant.xml -------------------------------------------------------------------------------- /Docs/Urho/VariantType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/VariantType.xml -------------------------------------------------------------------------------- /Docs/Urho/VariantValue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/VariantValue.xml -------------------------------------------------------------------------------- /Docs/Urho/VariantValueLine.xml.remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/VariantValueLine.xml.remove -------------------------------------------------------------------------------- /Docs/Urho/Vector2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Vector2.xml -------------------------------------------------------------------------------- /Docs/Urho/Vector3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Vector3.xml -------------------------------------------------------------------------------- /Docs/Urho/Vector4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Vector4.xml -------------------------------------------------------------------------------- /Docs/Urho/VectorBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/VectorBase.xml -------------------------------------------------------------------------------- /Docs/Urho/VertexBuffer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/VertexBuffer.xml -------------------------------------------------------------------------------- /Docs/Urho/VertexElement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/VertexElement.xml -------------------------------------------------------------------------------- /Docs/Urho/VertexLightVSVariation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/VertexLightVSVariation.xml -------------------------------------------------------------------------------- /Docs/Urho/View.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/View.xml -------------------------------------------------------------------------------- /Docs/Urho/ViewOverrideFlags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/ViewOverrideFlags.xml -------------------------------------------------------------------------------- /Docs/Urho/Viewport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Viewport.xml -------------------------------------------------------------------------------- /Docs/Urho/WeakPtr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/WeakPtr.xml -------------------------------------------------------------------------------- /Docs/Urho/WindowPosEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/WindowPosEventArgs.xml -------------------------------------------------------------------------------- /Docs/Urho/WirePlane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/WirePlane.xml -------------------------------------------------------------------------------- /Docs/Urho/WorkItem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/WorkItem.xml -------------------------------------------------------------------------------- /Docs/Urho/WorkQueue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/WorkQueue.xml -------------------------------------------------------------------------------- /Docs/Urho/WrapMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/WrapMode.xml -------------------------------------------------------------------------------- /Docs/Urho/Zone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/Zone.xml -------------------------------------------------------------------------------- /Docs/Urho/_images/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/Untitled.png -------------------------------------------------------------------------------- /Docs/Urho/_images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/back.png -------------------------------------------------------------------------------- /Docs/Urho/_images/pbr_techniques.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/pbr_techniques.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_Diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_Diff.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_DiffAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_DiffAdd.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_DiffEmissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_DiffEmissive.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_DiffMultiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_DiffMultiply.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_DiffNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_DiffNormal.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_DiffSpec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_DiffSpec.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_DiffUnlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_DiffUnlit.png -------------------------------------------------------------------------------- /Docs/Urho/_images/t_NoTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/t_NoTexture.png -------------------------------------------------------------------------------- /Docs/Urho/_images/techniques.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/Urho/_images/techniques.png -------------------------------------------------------------------------------- /Docs/fill.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/fill.fs -------------------------------------------------------------------------------- /Docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/index.xml -------------------------------------------------------------------------------- /Docs/ns-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Actions.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Audio.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Gui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Gui.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.IO.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Navigation.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Network.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Physics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Physics.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Portable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Portable.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Resources.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Shapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Shapes.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.SharpReality.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.SharpReality.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.Urho2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.Urho2D.xml -------------------------------------------------------------------------------- /Docs/ns-Urho.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Docs/ns-Urho.xml -------------------------------------------------------------------------------- /Extensions/Urho.Extensions.Droid.ARCore/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/LICENSE -------------------------------------------------------------------------------- /MakeAndroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeAndroid -------------------------------------------------------------------------------- /MakeLinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeLinux -------------------------------------------------------------------------------- /MakeMac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeMac -------------------------------------------------------------------------------- /MakeSharpReality: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeSharpReality -------------------------------------------------------------------------------- /MakeSharpReality.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeSharpReality.bat -------------------------------------------------------------------------------- /MakeUWP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeUWP -------------------------------------------------------------------------------- /MakeUWP.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeUWP.bat -------------------------------------------------------------------------------- /MakeWindows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeWindows -------------------------------------------------------------------------------- /MakeWindows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeWindows.bat -------------------------------------------------------------------------------- /MakeWindowsAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeWindowsAll.bat -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Makefile -------------------------------------------------------------------------------- /MakeiOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/MakeiOS -------------------------------------------------------------------------------- /Nuget/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Nuget/Desktop/UrhoSharp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Desktop/UrhoSharp.targets -------------------------------------------------------------------------------- /Nuget/Tools/UrhoSharp.Tools.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Tools/UrhoSharp.Tools.targets -------------------------------------------------------------------------------- /Nuget/UWP/UrhoSharp.Forms.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/UWP/UrhoSharp.Forms.targets -------------------------------------------------------------------------------- /Nuget/UWP/UrhoSharp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/UWP/UrhoSharp.targets -------------------------------------------------------------------------------- /Nuget/Urho.ARCore.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.ARCore.nuspec -------------------------------------------------------------------------------- /Nuget/Urho.Cocoa.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.Cocoa.nuspec -------------------------------------------------------------------------------- /Nuget/Urho.Forms.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.Forms.nuspec -------------------------------------------------------------------------------- /Nuget/Urho.SharpReality.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.SharpReality.nuspec -------------------------------------------------------------------------------- /Nuget/Urho.Tools.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.Tools.nuspec -------------------------------------------------------------------------------- /Nuget/Urho.WinForms.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.WinForms.nuspec -------------------------------------------------------------------------------- /Nuget/Urho.Wpf.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.Wpf.nuspec -------------------------------------------------------------------------------- /Nuget/Urho.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/Urho.nuspec -------------------------------------------------------------------------------- /Nuget/UrhoSharpNuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/UrhoSharpNuget.png -------------------------------------------------------------------------------- /Nuget/iOS/UrhoSharp.Forms.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/iOS/UrhoSharp.Forms.targets -------------------------------------------------------------------------------- /Nuget/iOS/UrhoSharp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Nuget/iOS/UrhoSharp.targets -------------------------------------------------------------------------------- /ProjectTemplates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/ProjectTemplates/Makefile -------------------------------------------------------------------------------- /ProjectTemplates/VSIX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/ProjectTemplates/VSIX.sln -------------------------------------------------------------------------------- /ProjectTemplates/VSIX/UrhoSharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/ProjectTemplates/VSIX/UrhoSharp.png -------------------------------------------------------------------------------- /ProjectTemplates/VSIX/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/ProjectTemplates/VSIX/index.html -------------------------------------------------------------------------------- /ProjectTemplates/VSIX/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/ProjectTemplates/VSIX/stylesheet.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/ARCore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Screenshots/ARCore.png -------------------------------------------------------------------------------- /Screenshots/ARKit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Screenshots/ARKit.gif -------------------------------------------------------------------------------- /Screenshots/Android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Screenshots/Android.gif -------------------------------------------------------------------------------- /Screenshots/Linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Screenshots/Linux.png -------------------------------------------------------------------------------- /Screenshots/SamplyGame.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Screenshots/SamplyGame.gif -------------------------------------------------------------------------------- /SharpieBinder/.gitignore: -------------------------------------------------------------------------------- 1 | packages -------------------------------------------------------------------------------- /SharpieBinder/Commenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/Commenter.cs -------------------------------------------------------------------------------- /SharpieBinder/CxxBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/CxxBinder.cs -------------------------------------------------------------------------------- /SharpieBinder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/LICENSE -------------------------------------------------------------------------------- /SharpieBinder/NamespaceRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/NamespaceRegistry.cs -------------------------------------------------------------------------------- /SharpieBinder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/Program.cs -------------------------------------------------------------------------------- /SharpieBinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/README.md -------------------------------------------------------------------------------- /SharpieBinder/ScanBaseTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/ScanBaseTypes.cs -------------------------------------------------------------------------------- /SharpieBinder/SharpieBinder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/SharpieBinder.csproj -------------------------------------------------------------------------------- /SharpieBinder/SharpieBinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/SharpieBinder.sln -------------------------------------------------------------------------------- /SharpieBinder/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/StringUtil.cs -------------------------------------------------------------------------------- /SharpieBinder/bin/Clang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/bin/Clang.dll -------------------------------------------------------------------------------- /SharpieBinder/bin/Sharpie.Bind.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/bin/Sharpie.Bind.dll -------------------------------------------------------------------------------- /SharpieBinder/bin/libclang-mono.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/bin/libclang-mono.dylib -------------------------------------------------------------------------------- /SharpieBinder/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/nuget.config -------------------------------------------------------------------------------- /SharpieBinder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/SharpieBinder/packages.config -------------------------------------------------------------------------------- /Tests/Urho.Tests/Bootstrap/TestApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/Bootstrap/TestApp.cs -------------------------------------------------------------------------------- /Tests/Urho.Tests/ColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/ColorTests.cs -------------------------------------------------------------------------------- /Tests/Urho.Tests/Issue222.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/Issue222.cs -------------------------------------------------------------------------------- /Tests/Urho.Tests/NodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/NodeTests.cs -------------------------------------------------------------------------------- /Tests/Urho.Tests/ShapesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/ShapesTests.cs -------------------------------------------------------------------------------- /Tests/Urho.Tests/StringHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/StringHash.cs -------------------------------------------------------------------------------- /Tests/Urho.Tests/Urho.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/Urho.Tests.csproj -------------------------------------------------------------------------------- /Tests/Urho.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Tests/Urho.Tests/packages.config -------------------------------------------------------------------------------- /Urho.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho.sln -------------------------------------------------------------------------------- /Urho3D/CoreData.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData.pak -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Box.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Box.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Cone.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Cone.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Cylinder.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Cylinder.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Dome.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Dome.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Plane.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Plane.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Pyramid.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Pyramid.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Sphere.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Sphere.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/Models/Torus.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Models/Torus.mdl -------------------------------------------------------------------------------- /Urho3D/CoreData/PostProcess/Bloom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/PostProcess/Bloom.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/PostProcess/Blur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/PostProcess/Blur.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/PostProcess/FXAA2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/PostProcess/FXAA2.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/PostProcess/FXAA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/PostProcess/FXAA3.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Shaders/GLSL/Fog.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Shaders/GLSL/Fog.glsl -------------------------------------------------------------------------------- /Urho3D/CoreData/Shaders/GLSL/IBL.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Shaders/GLSL/IBL.glsl -------------------------------------------------------------------------------- /Urho3D/CoreData/Shaders/GLSL/PBR.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Shaders/GLSL/PBR.glsl -------------------------------------------------------------------------------- /Urho3D/CoreData/Shaders/HLSL/Fog.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Shaders/HLSL/Fog.hlsl -------------------------------------------------------------------------------- /Urho3D/CoreData/Shaders/HLSL/IBL.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Shaders/HLSL/IBL.hlsl -------------------------------------------------------------------------------- /Urho3D/CoreData/Shaders/HLSL/PBR.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Shaders/HLSL/PBR.hlsl -------------------------------------------------------------------------------- /Urho3D/CoreData/Techniques/Diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Techniques/Diff.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Techniques/DiffAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Techniques/DiffAO.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Techniques/Water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Techniques/Water.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/Ramp.png -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/Ramp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/Ramp.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/RampWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/RampWide.png -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/RampWide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/RampWide.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/Spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/Spot.png -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/Spot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/Spot.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/SpotWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/SpotWide.png -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/SpotWide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/SpotWide.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/UI.png -------------------------------------------------------------------------------- /Urho3D/CoreData/Textures/UI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/Textures/UI.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/UI/DefaultStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/UI/DefaultStyle.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/UI/MessageBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/UI/MessageBox.xml -------------------------------------------------------------------------------- /Urho3D/CoreData/UI/ScreenJoystick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/CoreData/UI/ScreenJoystick.xml -------------------------------------------------------------------------------- /Urho3D/Urho3D_Mac/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/Urho3D/Urho3D_Mac/Readme.md -------------------------------------------------------------------------------- /Urho3D/Urho3D_SharpReality/UrhoSharp.SharpReality/PlaneFinding/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /UrhoSharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/UrhoSharp.png -------------------------------------------------------------------------------- /docs/Urho.Actions/RotateAroundBy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho.Actions/RotateAroundBy.xml -------------------------------------------------------------------------------- /docs/Urho/AnimationBlendMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/AnimationBlendMode.xml -------------------------------------------------------------------------------- /docs/Urho/ClickEndEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/ClickEndEventArgs.xml -------------------------------------------------------------------------------- /docs/Urho/ClickEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/ClickEventArgs.xml -------------------------------------------------------------------------------- /docs/Urho/ConvexData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/ConvexData.xml -------------------------------------------------------------------------------- /docs/Urho/CoreAssets+Fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/CoreAssets+Fonts.xml -------------------------------------------------------------------------------- /docs/Urho/CoreAssets+Materials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/CoreAssets+Materials.xml -------------------------------------------------------------------------------- /docs/Urho/CoreAssets+Models.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/CoreAssets+Models.xml -------------------------------------------------------------------------------- /docs/Urho/CoreAssets+RenderPaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/CoreAssets+RenderPaths.xml -------------------------------------------------------------------------------- /docs/Urho/CoreAssets+Techniques.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/CoreAssets+Techniques.xml -------------------------------------------------------------------------------- /docs/Urho/CoreAssets+Textures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/CoreAssets+Textures.xml -------------------------------------------------------------------------------- /docs/Urho/CoreAssets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/CoreAssets.xml -------------------------------------------------------------------------------- /docs/Urho/DoubleClickEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/DoubleClickEventArgs.xml -------------------------------------------------------------------------------- /docs/Urho/FONT_TYPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/FONT_TYPE.xml -------------------------------------------------------------------------------- /docs/Urho/HashBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/HashBase.xml -------------------------------------------------------------------------------- /docs/Urho/HeightfieldData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/HeightfieldData.xml -------------------------------------------------------------------------------- /docs/Urho/LegacyVertexElement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/LegacyVertexElement.xml -------------------------------------------------------------------------------- /docs/Urho/LogSharpLevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/LogSharpLevel.xml -------------------------------------------------------------------------------- /docs/Urho/NavigationPathPointFlag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/NavigationPathPointFlag.xml -------------------------------------------------------------------------------- /docs/Urho/NodeTagAddedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/NodeTagAddedEventArgs.xml -------------------------------------------------------------------------------- /docs/Urho/NodeTagRemovedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/NodeTagRemovedEventArgs.xml -------------------------------------------------------------------------------- /docs/Urho/Sdl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/Sdl.xml -------------------------------------------------------------------------------- /docs/Urho/SdlEventType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/SdlEventType.xml -------------------------------------------------------------------------------- /docs/Urho/SdlWindowEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/SdlWindowEvent.xml -------------------------------------------------------------------------------- /docs/Urho/ShadowQuality.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/ShadowQuality.xml -------------------------------------------------------------------------------- /docs/Urho/SoundFinishedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/SoundFinishedEventArgs.xml -------------------------------------------------------------------------------- /docs/Urho/TriangleMeshData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/TriangleMeshData.xml -------------------------------------------------------------------------------- /docs/Urho/VertexElementSemantic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/VertexElementSemantic.xml -------------------------------------------------------------------------------- /docs/Urho/VertexElementType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/Urho/VertexElementType.xml -------------------------------------------------------------------------------- /docs/ns-Urho.Desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/ns-Urho.Desktop.xml -------------------------------------------------------------------------------- /docs/ns-Urho.Repl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/urho/HEAD/docs/ns-Urho.Repl.xml --------------------------------------------------------------------------------