在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → ATF LevelEditor游戏关卡编辑器源码下载

ATF LevelEditor游戏关卡编辑器源码下载

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:61.72M
  • 下载次数:0
  • 浏览次数:6
  • 发布时间:2024-03-25
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: editor edit 编辑器 LED 编辑

实例介绍

【实例简介】
ATF LevelEditor是一个强大的工具,用于构建和组装游戏关卡。它提供了所见即所得的界面.

【实例截图】

from clipboard

【核心代码】
文件清单
└── LevelEditor-203a52ac8ab46e8829e5646ac2300cdb0bb68010
    ├── AssetRoot
    │   ├── HeightMaps
    │   │   ├── Terrain.dds
    │   │   └── TerrainLayer01.dds
    │   ├── ReadMe.txt
    │   ├── Rocks
    │   │   ├── rock03.atgi
    │   │   ├── Rock03_diff.png
    │   │   ├── Rock03_norm.png
    │   │   ├── rock04.atgi
    │   │   ├── Rock04_diff.png
    │   │   ├── Rock04_disp.png
    │   │   └── Rock04_norm.png
    │   ├── Textures
    │   │   ├── Grass.dds
    │   │   ├── GrassNormal.dds
    │   │   ├── moss2-heightmap.png
    │   │   ├── moss2-NM.png
    │   │   └── moss2.png
    │   └── Trees
    │       ├── tree_02_A_DM.tga
    │       ├── tree_02_bark.tga
    │       ├── tree_02_B_DM.tga
    │       ├── tree_03a_DM.tga
    │       ├── tree_03b_DM.tga
    │       ├── tree_03_flattened.atgi
    │       ├── tree_04_bark.tga
    │       └── tree_04_flattened.atgi
    ├── ATF
    │   ├── DevTools
    │   │   └── DomGen
    │   │       ├── Atf.Core.dll
    │   │       └── DomGen.exe
    │   ├── Framework
    │   │   ├── Atf.Core
    │   │   │   ├── ActiveCollection.cs
    │   │   │   ├── Adaptation
    │   │   │   │   ├── AdaptableActiveCollection.cs
    │   │   │   │   ├── AdaptableCollection.cs
    │   │   │   │   ├── AdaptableList.cs
    │   │   │   │   ├── AdaptablePath.cs
    │   │   │   │   ├── AdaptableSelection.cs
    │   │   │   │   ├── AdaptationException.cs
    │   │   │   │   ├── AdapterCreator.cs
    │   │   │   │   ├── Adapter.cs
    │   │   │   │   ├── Adapters.cs
    │   │   │   │   ├── BindingAdapterObject.cs
    │   │   │   │   ├── IAdaptable.cs
    │   │   │   │   ├── IAdapterCreator.cs
    │   │   │   │   ├── IAdapter.cs
    │   │   │   │   └── IDecoratable.cs
    │   │   │   ├── ArgParser.cs
    │   │   │   ├── AssemblyUtil.cs
    │   │   │   ├── Atf.Core.vs2010.csproj
    │   │   │   ├── AtfPluginAttribute.cs
    │   │   │   ├── AtfUsageLogger.cs
    │   │   │   ├── AtfVersion.cs
    │   │   │   ├── AttributeUtils.cs
    │   │   │   ├── Cached.cs
    │   │   │   ├── CollectionAdapter.cs
    │   │   │   ├── ConsoleOutputWriter.cs
    │   │   │   ├── CrashLogger.cs
    │   │   │   ├── DependencySystem.cs
    │   │   │   ├── DirectoryUtil.cs
    │   │   │   ├── DisplayStringAttribute.cs
    │   │   │   ├── Dom
    │   │   │   │   ├── AnnotationException.cs
    │   │   │   │   ├── AttributeEventArgs.cs
    │   │   │   │   ├── AttributeInfo.cs
    │   │   │   │   ├── AttributeRule.cs
    │   │   │   │   ├── AttributeType.cs
    │   │   │   │   ├── AttributeTypes.cs
    │   │   │   │   ├── CategoryUniqueIdValidator.cs
    │   │   │   │   ├── ChildCountRule.cs
    │   │   │   │   ├── ChildEventArgs.cs
    │   │   │   │   ├── ChildInfo.cs
    │   │   │   │   ├── ChildRule.cs
    │   │   │   │   ├── CustomTypeDescriptorNodeAdapter.cs
    │   │   │   │   ├── DataValidator.cs
    │   │   │   │   ├── DependencyValidator.cs
    │   │   │   │   ├── DomDocument.cs
    │   │   │   │   ├── DomNodeAdapter.cs
    │   │   │   │   ├── DomNode.cs
    │   │   │   │   ├── DomNodeListAdapter.cs
    │   │   │   │   ├── DomNodeQueryable.cs
    │   │   │   │   ├── DomNodeQueryMatch.cs
    │   │   │   │   ├── DomNodeSerializer.cs
    │   │   │   │   ├── DomNodeType.cs
    │   │   │   │   ├── DomResource.cs
    │   │   │   │   ├── DomXmlReader.cs
    │   │   │   │   ├── DomXmlWriter.cs
    │   │   │   │   ├── ExtensionInfo.cs
    │   │   │   │   ├── FieldMetadata.cs
    │   │   │   │   ├── IdValidator.cs
    │   │   │   │   ├── LockingValidator.cs
    │   │   │   │   ├── NamedMetadata.cs
    │   │   │   │   ├── NumericMaxRule.cs
    │   │   │   │   ├── NumericMinRule.cs
    │   │   │   │   ├── ObservableDomNodeAdapter.cs
    │   │   │   │   ├── ObservableDomNodeListAdapter.cs
    │   │   │   │   ├── ObservableDomPropertyAttribute.cs
    │   │   │   │   ├── Observer.cs
    │   │   │   │   ├── ReferenceEventArgs.cs
    │   │   │   │   ├── ReferenceValidator.cs
    │   │   │   │   ├── StringEnumRule.cs
    │   │   │   │   ├── TransactionContext.cs
    │   │   │   │   ├── TransactionReporter.cs
    │   │   │   │   ├── TypeAdapterCreator.cs
    │   │   │   │   ├── UniqueIdValidator.cs
    │   │   │   │   ├── UniquePathIdValidator.cs
    │   │   │   │   ├── Validator.cs
    │   │   │   │   ├── XmlAttributeInfo.cs
    │   │   │   │   ├── XmlAttributeType.cs
    │   │   │   │   ├── XmlNodeReference.cs
    │   │   │   │   ├── XmlPersister.cs
    │   │   │   │   ├── XmlSchemaTypeCollection.cs
    │   │   │   │   └── XmlSchemaTypeLoader.cs
    │   │   │   ├── EmbeddedResourceStringLocalizer.cs
    │   │   │   ├── EmptyArray.cs
    │   │   │   ├── EmptyEnumerable.cs
    │   │   │   ├── EnumerableUtil.cs
    │   │   │   ├── EnumUtil.cs
    │   │   │   ├── Event.cs
    │   │   │   ├── FileMoveInfo.cs
    │   │   │   ├── FileMoveService.cs
    │   │   │   ├── FileMoveType.cs
    │   │   │   ├── FileStreamResolver.cs
    │   │   │   ├── FileSystemResourceFolder.cs
    │   │   │   ├── Global.cs
    │   │   │   ├── ICrashLogger.cs
    │   │   │   ├── IDocument.cs
    │   │   │   ├── IEnumerableContext.cs
    │   │   │   ├── IFileMoveService.cs
    │   │   │   ├── IFileWatcherService.cs
    │   │   │   ├── IInitializable.cs
    │   │   │   ├── ILockingContext.cs
    │   │   │   ├── IntSet.cs
    │   │   │   ├── InvalidTransactionException.cs
    │   │   │   ├── IObservableCollection.cs
    │   │   │   ├── IObservableContext.cs
    │   │   │   ├── IOutputWriter.cs
    │   │   │   ├── IPropertyValueValidator.cs
    │   │   │   ├── IQueryableContext.cs
    │   │   │   ├── IQueryableReplaceContext.cs
    │   │   │   ├── IQueryableResultContext.cs
    │   │   │   ├── IQueryMatch.cs
    │   │   │   ├── IQueryPredicate.cs
    │   │   │   ├── IReference.cs
    │   │   │   ├── IReplacingQueryPattern.cs
    │   │   │   ├── IResource.cs
    │   │   │   ├── IResourceFolder.cs
    │   │   │   ├── IResourceReference.cs
    │   │   │   ├── IResourceResolver.cs
    │   │   │   ├── IResourceService.cs
    │   │   │   ├── IServerLogger.cs
    │   │   │   ├── ItemChangedEventArgs.cs
    │   │   │   ├── ItemInsertedEventArgs.cs
    │   │   │   ├── ItemRemovedEventArgs.cs
    │   │   │   ├── ItemsChangedEventArgs.cs
    │   │   │   ├── ItemSelectedEventArgs.cs
    │   │   │   ├── ITransactionContext.cs
    │   │   │   ├── IValidationContext.cs
    │   │   │   ├── Kernel32.cs
    │   │   │   ├── LabelEditedEventArgs.cs
    │   │   │   ├── Lazies.cs
    │   │   │   ├── ListAdapter.cs
    │   │   │   ├── LiveConnectService.cs
    │   │   │   ├── LocalizedDescriptionAttribute.cs
    │   │   │   ├── LocalizedNameAttribute.cs
    │   │   │   ├── Localizer.cs
    │   │   │   ├── MathUtil.cs
    │   │   │   ├── MefUtil.cs
    │   │   │   ├── Multimap.cs
    │   │   │   ├── NumericUtil.cs
    │   │   │   ├── OutputMessageType.cs
    │   │   │   ├── Outputs.cs
    │   │   │   ├── Pair.cs
    │   │   │   ├── Path.cs
    │   │   │   ├── PathUtil.cs
    │   │   │   ├── PerformanceCounters.cs
    │   │   │   ├── PerformanceTimers.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   ├── PropertyChangedEventArgsCollection.cs
    │   │   │   ├── ReentryGuard.cs
    │   │   │   ├── Rendering
    │   │   │   │   ├── DomNodeUtil.cs
    │   │   │   │   ├── IAnimChannel.cs
    │   │   │   │   ├── IAnimClip.cs
    │   │   │   │   ├── IAnim.cs
    │   │   │   │   ├── IBinding.cs
    │   │   │   │   ├── ICustomDataAttribute.cs
    │   │   │   │   ├── ICustomData.cs
    │   │   │   │   ├── IDataset.cs
    │   │   │   │   ├── IJoint.cs
    │   │   │   │   ├── ILodGroup.cs
    │   │   │   │   ├── IMesh.cs
    │   │   │   │   ├── INameable.cs
    │   │   │   │   ├── INode.cs
    │   │   │   │   ├── IPose.cs
    │   │   │   │   ├── IPoseElement.cs
    │   │   │   │   ├── IPrimitiveSet.cs
    │   │   │   │   ├── IScene.cs
    │   │   │   │   ├── IShader.cs
    │   │   │   │   ├── ISubMesh.cs
    │   │   │   │   ├── ITexture.cs
    │   │   │   │   ├── IVisible.cs
    │   │   │   │   └── IWorld.cs
    │   │   │   ├── Requires.cs
    │   │   │   ├── Resources
    │   │   │   │   ├── ja
    │   │   │   │   │   └── Localization.xml
    │   │   │   │   └── Localization.xml
    │   │   │   ├── ResourceService.cs
    │   │   │   ├── ResourceStreamResolver.cs
    │   │   │   ├── SatelliteAssemblyStringLocalizer.cs
    │   │   │   ├── SearchAndReplace
    │   │   │   │   ├── DomNodeNamePredicate.cs
    │   │   │   │   ├── DomNodePropertyMatch.cs
    │   │   │   │   ├── DomNodePropertyPredicate.cs
    │   │   │   │   ├── DomNodeQueryable.cs
    │   │   │   │   ├── DomNodeQueryMatch.cs
    │   │   │   │   ├── IQueryableContext.cs
    │   │   │   │   ├── IQueryableReplaceContext.cs
    │   │   │   │   ├── IQueryableResultContext.cs
    │   │   │   │   ├── IQueryMatch.cs
    │   │   │   │   ├── IQueryPredicate.cs
    │   │   │   │   ├── IReplacingQueryPattern.cs
    │   │   │   │   └── LinqQueryPredicate.cs
    │   │   │   ├── Selection.cs
    │   │   │   ├── ServerLogger.cs
    │   │   │   ├── Shell32.cs
    │   │   │   ├── StringLocalizer.cs
    │   │   │   ├── StringUtil.cs
    │   │   │   ├── Tree.cs
    │   │   │   ├── UniqueNamer.cs
    │   │   │   ├── UriChangedEventArgs.cs
    │   │   │   ├── VectorMath
    │   │   │   │   ├── AngleAxisF.cs
    │   │   │   │   ├── BezierCurve2F.cs
    │   │   │   │   ├── BezierCurve.cs
    │   │   │   │   ├── BezierSpline.cs
    │   │   │   │   ├── Box2F.cs
    │   │   │   │   ├── Box.cs
    │   │   │   │   ├── CircleF.cs
    │   │   │   │   ├── EulerAngleChannels.cs
    │   │   │   │   ├── EulerAngleLimits.cs
    │   │   │   │   ├── EulerAngleOrder.cs
    │   │   │   │   ├── EulerAngles.cs
    │   │   │   │   ├── Frustum.cs
    │   │   │   │   ├── Matrix3F.cs
    │   │   │   │   ├── Matrix3x2F.cs
    │   │   │   │   ├── Matrix4F.cs
    │   │   │   │   ├── Plane3F.cs
    │   │   │   │   ├── Polygon3F.cs
    │   │   │   │   ├── QuatF.cs
    │   │   │   │   ├── Ray2F.cs
    │   │   │   │   ├── Ray3F.cs
    │   │   │   │   ├── Seg2F.cs
    │   │   │   │   ├── Sphere3F.cs
    │   │   │   │   ├── Triangle3F.cs
    │   │   │   │   ├── Vec2F.cs
    │   │   │   │   ├── Vec3F.cs
    │   │   │   │   └── Vec4F.cs
    │   │   │   ├── WeakKey.cs
    │   │   │   └── XmlStringLocalizer.cs
    │   │   ├── Atf.Gui
    │   │   │   ├── Applications
    │   │   │   │   ├── ApplicationUtil.cs
    │   │   │   │   ├── CanvasPrintDocument.cs
    │   │   │   │   ├── CommandCount.cs
    │   │   │   │   ├── Command.cs
    │   │   │   │   ├── CommandHistory.cs
    │   │   │   │   ├── CommandId.cs
    │   │   │   │   ├── CommandInfo.cs
    │   │   │   │   ├── Commands
    │   │   │   │   │   ├── Command.cs
    │   │   │   │   │   ├── CompositeCommand.cs
    │   │   │   │   │   ├── ListChangeCommand.cs
    │   │   │   │   │   ├── ListInsertCommand.cs
    │   │   │   │   │   ├── ListRemoveCommand.cs
    │   │   │   │   │   ├── SetPropertyCommand.cs
    │   │   │   │   │   └── SetSelectionCommand.cs
    │   │   │   │   ├── CommandServiceBase.cs
    │   │   │   │   ├── CommandState.cs
    │   │   │   │   ├── CommandVisibility.cs
    │   │   │   │   ├── CompositeCommand.cs
    │   │   │   │   ├── ContentTypeService.cs
    │   │   │   │   ├── ContextRegistry.cs
    │   │   │   │   ├── ControlHostService.cs
    │   │   │   │   ├── DirectoryWatcherService.cs
    │   │   │   │   ├── DocumentClientInfo.cs
    │   │   │   │   ├── DocumentClosingEventArgs.cs
    │   │   │   │   ├── DocumentEventArgs.cs
    │   │   │   │   ├── DocumentEventType.cs
    │   │   │   │   ├── DocumentRegistry.cs
    │   │   │   │   ├── FileWatcherService.cs
    │   │   │   │   ├── HelpAboutCommand.cs
    │   │   │   │   ├── IColoringContext.cs
    │   │   │   │   ├── ICommandClient.cs
    │   │   │   │   ├── ICommandService.cs
    │   │   │   │   ├── IContextMenuCommandProvider.cs
    │   │   │   │   ├── IContextRegistry.cs
    │   │   │   │   ├── IDirectoryWatcherService.cs
    │   │   │   │   ├── IDockStateProvider.cs
    │   │   │   │   ├── IDocumentClient.cs
    │   │   │   │   ├── IDocumentRegistry.cs
    │   │   │   │   ├── IDocumentService.cs
    │   │   │   │   ├── IFileDialogService.cs
    │   │   │   │   ├── IHelpContext.cs
    │   │   │   │   ├── IHierarchicalInsertionContext.cs
    │   │   │   │   ├── IHistoryContext.cs
    │   │   │   │   ├── IInstancingContext.cs
    │   │   │   │   ├── ILastHitAware.cs
    │   │   │   │   ├── IMessageBoxService.cs
    │   │   │   │   ├── INamingContext.cs
    │   │   │   │   ├── IOrderedInsertionContext.cs
    │   │   │   │   ├── IOscService.cs
    │   │   │   │   ├── IPaletteClient.cs
    │   │   │   │   ├── IPaletteService.cs
    │   │   │   │   ├── IPinnable.cs
    │   │   │   │   ├── IPrintableDocument.cs
    │   │   │   │   ├── IPropertyEditingContext.cs
    │   │   │   │   ├── IReplaceUI.cs
    │   │   │   │   ├── IResultsUI.cs
    │   │   │   │   ├── ISearchableContextUI.cs
    │   │   │   │   ├── ISearchUI.cs
    │   │   │   │   ├── ISelectionContext.cs
    │   │   │   │   ├── ISelectionPathProvider.cs
    │   │   │   │   ├── ISettingsPathsProvider.cs
    │   │   │   │   ├── ISettingsService.cs
    │   │   │   │   ├── IStatusImage.cs
    │   │   │   │   ├── IStatusService.cs
    │   │   │   │   ├── IStatusText.cs
    │   │   │   │   ├── ISubSelectionContext.cs
    │   │   │   │   ├── IThumbnailResolver.cs
    │   │   │   │   ├── IUserFeedbackService.cs
    │   │   │   │   ├── IViewingContext.cs
    │   │   │   │   ├── IVisibilityContext.cs
    │   │   │   │   ├── IWindowLayoutService.cs
    │   │   │   │   ├── LemurOscService.cs
    │   │   │   │   ├── Listers
    │   │   │   │   │   ├── AssetLister.cs
    │   │   │   │   │   ├── FilteredTreeView.cs
    │   │   │   │   │   ├── GridControlAdapter.cs
    │   │   │   │   │   ├── IItemView.cs
    │   │   │   │   │   ├── ILayeringContext.cs
    │   │   │   │   │   ├── IListView.cs
    │   │   │   │   │   ├── IndependentFilteredTreeView.cs
    │   │   │   │   │   ├── ItemInfo.cs
    │   │   │   │   │   ├── ITreeListView.cs
    │   │   │   │   │   └── ITreeView.cs
    │   │   │   │   ├── MenuInfo.cs
    │   │   │   │   ├── NetworkTargetServices
    │   │   │   │   │   ├── Deci4pTargetProvider.cs
    │   │   │   │   │   ├── ITargetConsumer.cs
    │   │   │   │   │   ├── ITargetProvider.cs
    │   │   │   │   │   ├── SelectedTargetsChangedArgs.cs
    │   │   │   │   │   ├── TargetCommands.cs
    │   │   │   │   │   ├── TargetInfo.cs
    │   │   │   │   │   ├── TargetScope.cs
    │   │   │   │   │   ├── TcpIpTargetInfo.cs
    │   │   │   │   │   └── TcpIpTargetProvider.cs
    │   │   │   │   ├── OscCommandReceiver.cs
    │   │   │   │   ├── OscService.cs
    │   │   │   │   ├── PinnableActiveCollection.cs
    │   │   │   │   ├── PluginManagerForm.cs
    │   │   │   │   ├── PluginManagerForm.designer.cs
    │   │   │   │   ├── PluginManagerForm.resx
    │   │   │   │   ├── PluginManagerService.cs
    │   │   │   │   ├── PropertyEventArgs.cs
    │   │   │   │   ├── RecentDocumentCommands.cs
    │   │   │   │   ├── RecentDocumentInfo.cs
    │   │   │   │   ├── ScriptingService.cs
    │   │   │   │   ├── SetPropertyCommand.cs
    │   │   │   │   ├── SetSelectionCommand.cs
    │   │   │   │   ├── SettingsServiceBase.cs
    │   │   │   │   ├── StandardCommand.cs
    │   │   │   │   ├── StandardCommandGroup.cs
    │   │   │   │   ├── StandardControlGroup.cs
    │   │   │   │   ├── StandardDockAreas.cs
    │   │   │   │   ├── StandardEditHistoryCommands.cs
    │   │   │   │   ├── StandardFileCommands.cs
    │   │   │   │   ├── StandardLockCommands.cs
    │   │   │   │   ├── StandardMenu.cs
    │   │   │   │   ├── StandardSelectionCommands.cs
    │   │   │   │   ├── StandardShowCommands.cs
    │   │   │   │   ├── StandardViewCommands.cs
    │   │   │   │   ├── StatusService.cs
    │   │   │   │   ├── TextPrintDocument.cs
    │   │   │   │   ├── ThumbnailReadyEventArgs.cs
    │   │   │   │   ├── VersionControl
    │   │   │   │   │   ├── ISourceControlContext.cs
    │   │   │   │   │   ├── ISourceControlService.cs
    │   │   │   │   │   ├── ReconcileForm.Designer.cs
    │   │   │   │   │   ├── SourceControlCommandsBase.cs
    │   │   │   │   │   ├── SourceControlEventArgs.cs
    │   │   │   │   │   ├── SourceControlFileInfo.cs
    │   │   │   │   │   ├── SourceControlRevision.cs
    │   │   │   │   │   ├── SourceControlRevisionKind.cs
    │   │   │   │   │   ├── SourceControlService.cs
    │   │   │   │   │   └── SourceControlStatus.cs
    │   │   │   │   ├── WebServices
    │   │   │   │   │   └── Web References
    │   │   │   │   │       ├── com.scea.ship.submitBug
    │   │   │   │   │       │   ├── BugReportingService.cs
    │   │   │   │   │       │   ├── SubmitBug.discomap
    │   │   │   │   │       │   └── SubmitBug.wsdl
    │   │   │   │   │       └── com.scea.ship.versionCheck
    │   │   │   │   │           ├── VersionChecker.discomap
    │   │   │   │   │           ├── VersionCheckerService.cs
    │   │   │   │   │           └── VersionChecker.wsdl
    │   │   │   │   ├── WindowLayoutServiceCommandsBase.cs
    │   │   │   │   └── WindowLayoutService.cs
    │   │   │   ├── AssemblyBannerAttribute.cs
    │   │   │   ├── Atf.Gui.vs2010.csproj
    │   │   │   ├── Collections
    │   │   │   │   ├── AdaptableObservableCollection.cs
    │   │   │   │   ├── AdaptingCollection.cs
    │   │   │   │   ├── CollectionChangedListener.cs
    │   │   │   │   ├── LinkedListExtensions.cs
    │   │   │   │   ├── ObservableCollectionAdapter.cs
    │   │   │   │   ├── PriorityQueue.cs
    │   │   │   │   ├── ReferenceCollectionAdapter.cs
    │   │   │   │   └── SortedObservableCollection.cs
    │   │   │   ├── ColorUtil.cs
    │   │   │   ├── Controls
    │   │   │   │   ├── Adaptable
    │   │   │   │   │   ├── ColumnHeadersAdapter.cs
    │   │   │   │   │   ├── D2dDiagramTheme.cs
    │   │   │   │   │   ├── DiagramBorder.cs
    │   │   │   │   │   ├── DiagramDrawingStyle.cs
    │   │   │   │   │   ├── DiagramHitEventArgs.cs
    │   │   │   │   │   ├── DiagramHitRecord.cs
    │   │   │   │   │   ├── DiagramRenderer.cs
    │   │   │   │   │   ├── DiagramScrollBar.cs
    │   │   │   │   │   ├── DiagramTitleBar.cs
    │   │   │   │   │   ├── Graphs
    │   │   │   │   │   │   ├── BoundaryRoute.cs
    │   │   │   │   │   │   ├── Circuit
    │   │   │   │   │   │   │   ├── Annotation.cs
    │   │   │   │   │   │   │   ├── Circuit.cs
    │   │   │   │   │   │   │   ├── CircuitUtil.cs
    │   │   │   │   │   │   │   ├── Element.cs
    │   │   │   │   │   │   │   ├── ElementRef.cs
    │   │   │   │   │   │   │   ├── ElementReference.cs
    │   │   │   │   │   │   │   ├── ElementType.cs
    │   │   │   │   │   │   │   ├── Group.cs
    │   │   │   │   │   │   │   ├── GroupPin.cs
    │   │   │   │   │   │   │   ├── GroupReference.cs
    │   │   │   │   │   │   │   ├── ICircuitContainer.cs
    │   │   │   │   │   │   │   ├── LayerFolder.cs
    │   │   │   │   │   │   │   ├── MissingElementType.cs
    │   │   │   │   │   │   │   ├── Pin.cs
    │   │   │   │   │   │   │   ├── PinTarget.cs
    │   │   │   │   │   │   │   ├── Prototype.cs
    │   │   │   │   │   │   │   ├── PrototypeFolder.cs
    │   │   │   │   │   │   │   ├── SubCircuit.cs
    │   │   │   │   │   │   │   ├── SubCircuitInstance.cs
    │   │   │   │   │   │   │   └── Wire.cs
    │   │   │   │   │   │   ├── CircuitDefaultStyle.cs
    │   │   │   │   │   │   ├── CircuitElementInfo.cs
    │   │   │   │   │   │   ├── CircuitGroupInfo.cs
    │   │   │   │   │   │   ├── CircuitGroupPinInfo.cs
    │   │   │   │   │   │   ├── D2dGraphRenderer.cs
    │   │   │   │   │   │   ├── EdgeStyleData.cs
    │   │   │   │   │   │   ├── GraphHitRecord.cs
    │   │   │   │   │   │   ├── ICircuitElement.cs
    │   │   │   │   │   │   ├── ICircuitElementType.cs
    │   │   │   │   │   │   ├── ICircuitGroupPin.cs
    │   │   │   │   │   │   ├── ICircuitGroupType.cs
    │   │   │   │   │   │   ├── ICircuitPin.cs
    │   │   │   │   │   │   ├── IComplexState.cs
    │   │   │   │   │   │   ├── IEdgeRoute.cs
    │   │   │   │   │   │   ├── IEdgeStyleProvider.cs
    │   │   │   │   │   │   ├── IEditableGraphContainer.cs
    │   │   │   │   │   │   ├── IEditableGraph.cs
    │   │   │   │   │   │   ├── IGraphAdapter.cs
    │   │   │   │   │   │   ├── IGraph.cs
    │   │   │   │   │   │   ├── IGraphEdge.cs
    │   │   │   │   │   │   ├── IGraphNode.cs
    │   │   │   │   │   │   ├── IGraphNodeOptionsProvider.cs
    │   │   │   │   │   │   ├── IHierarchicalCircuitElementType.cs
    │   │   │   │   │   │   ├── IHierarchicalGraphNode.cs
    │   │   │   │   │   │   ├── IState.cs
    │   │   │   │   │   │   ├── StateIndicators.cs
    │   │   │   │   │   │   └── StateType.cs
    │   │   │   │   │   ├── IAnnotatedDiagram.cs
    │   │   │   │   │   └── IAnnotation.cs
    │   │   │   │   ├── CurveEditing
    │   │   │   │   │   ├── CurveEnums.cs
    │   │   │   │   │   ├── CurveInterfaces.cs
    │   │   │   │   │   ├── CurveUtils.cs
    │   │   │   │   │   ├── HermiteCurveEvaluator.cs
    │   │   │   │   │   ├── ICurveEvaluator.cs
    │   │   │   │   │   ├── LinearCurveEvaluator.cs
    │   │   │   │   │   └── Resources
    │   │   │   │   │       ├── AddKeysTool.png
    │   │   │   │   │       ├── BreakTangents.png
    │   │   │   │   │       ├── ClampedTangents.png
    │   │   │   │   │       ├── CurveSnap.png
    │   │   │   │   │       ├── CycleAfter.png
    │   │   │   │   │       ├── CycleAfterwithOffset.png
    │   │   │   │   │       ├── CycleBefore.png
    │   │   │   │   │       ├── CycleBeforewithOffset.png
    │   │   │   │   │       ├── Denormalize-curves.png
    │   │   │   │   │       ├── FlatTangents.png
    │   │   │   │   │       ├── FrameAll.png
    │   │   │   │   │       ├── FreeTangentWeight.png
    │   │   │   │   │       ├── InsertKeysTool.png
    │   │   │   │   │       ├── LinearTangents.png
    │   │   │   │   │       ├── LockTangent-Weight.png
    │   │   │   │   │       ├── MoveKeysTool.png
    │   │   │   │   │       ├── MoveNearestPickedKeyTool.png
    │   │   │   │   │       ├── NoAction.png
    │   │   │   │   │       ├── Normalizecurves.png
    │   │   │   │   │       ├── Panhv.cur
    │   │   │   │   │       ├── PlateauTangents.png
    │   │   │   │   │       ├── PointSnap.png
    │   │   │   │   │       ├── QuestionMark.cur
    │   │   │   │   │       ├── QuickHelp.txt
    │   │   │   │   │       ├── ScaleKeysTool.png
    │   │   │   │   │       ├── SelectionCursor.cur
    │   │   │   │   │       ├── SplineTangents.png
    │   │   │   │   │       ├── StepTangents.png
    │   │   │   │   │       ├── TimeSnap.png
    │   │   │   │   │       ├── UnifyTangents.png
    │   │   │   │   │       └── ValueSnap.png
    │   │   │   │   ├── FindFileAction.cs
    │   │   │   │   ├── PropertyEditing
    │   │   │   │   │   ├── BoundedFloatConverter.cs
    │   │   │   │   │   ├── BoundedIntConverter.cs
    │   │   │   │   │   ├── BoundPropertyDescriptor.cs
    │   │   │   │   │   ├── ColorEditor.cs
    │   │   │   │   │   ├── CustomizeAttribute.cs
    │   │   │   │   │   ├── DateTimeEditor.cs
    │   │   │   │   │   ├── EmbeddedPropertyView.cs
    │   │   │   │   │   ├── EnumTypeConverter.cs
    │   │   │   │   │   ├── ExclusiveEnumTypeConverter.cs
    │   │   │   │   │   ├── FlagsTypeConverter.cs
    │   │   │   │   │   ├── FloatArrayConverter.cs
    │   │   │   │   │   ├── ICacheablePropertyControl.cs
    │   │   │   │   │   ├── IDynamicTypeDescriptor.cs
    │   │   │   │   │   ├── IntColorConverter.cs
    │   │   │   │   │   ├── IntEnumTypeConverter.cs
    │   │   │   │   │   ├── IPropertyCustomSorter.cs
    │   │   │   │   │   ├── IPropertyEditingControlOwner.cs
    │   │   │   │   │   ├── PropertyChangedExtensions.cs
    │   │   │   │   │   ├── PropertyCollectionWrapper.cs
    │   │   │   │   │   ├── PropertyEditedEventArgs.cs
    │   │   │   │   │   ├── PropertyEditingContext.cs
    │   │   │   │   │   ├── PropertyErrorEventArgs.cs
    │   │   │   │   │   ├── PropertyGridMode.cs
    │   │   │   │   │   ├── PropertySorting.cs
    │   │   │   │   │   ├── PropertyUtils.cs
    │   │   │   │   │   ├── ReadOnlyConverter.cs
    │   │   │   │   │   ├── SelectionPropertyEditingContext.cs
    │   │   │   │   │   ├── SortableBindingList.cs
    │   │   │   │   │   ├── UnboundPropertyDescriptor.cs
    │   │   │   │   │   └── UniformFloatArrayConverter.cs
    │   │   │   │   ├── SearchResultsListView.cs
    │   │   │   │   └── Timelines
    │   │   │   │       ├── DefaultTimelineConstraints.cs
    │   │   │   │       ├── EventMovedEventArgs.cs
    │   │   │   │       ├── GhostInfo.cs
    │   │   │   │       ├── GhostType.cs
    │   │   │   │       ├── HitRecord.cs
    │   │   │   │       ├── HitType.cs
    │   │   │   │       ├── IEvent.cs
    │   │   │   │       ├── IGroup.cs
    │   │   │   │       ├── IHierarchicalTimeline.cs
    │   │   │   │       ├── IHierarchicalTimelineList.cs
    │   │   │   │       ├── IInterval.cs
    │   │   │   │       ├── IKey.cs
    │   │   │   │       ├── IMarker.cs
    │   │   │   │       ├── ITimeline.cs
    │   │   │   │       ├── ITimelineDocument.cs
    │   │   │   │       ├── ITimelineObjectCreator.cs
    │   │   │   │       ├── ITimelineObject.cs
    │   │   │   │       ├── ITimelineReference.cs
    │   │   │   │       ├── ITrack.cs
    │   │   │   │       ├── TimelineConstraints.cs
    │   │   │   │       ├── TimelineLayout.cs
    │   │   │   │       ├── TimelinePath.cs
    │   │   │   │       └── TimelineReferenceOptions.cs
    │   │   │   ├── CursorResourceAttribute.cs
    │   │   │   ├── Direct2D
    │   │   │   │   ├── D2dBitmapBrush.cs
    │   │   │   │   ├── D2dBitmap.cs
    │   │   │   │   ├── D2dBitmapGraphics.cs
    │   │   │   │   ├── D2dBrush.cs
    │   │   │   │   ├── D2dFactory.cs
    │   │   │   │   ├── D2dGeometry.cs
    │   │   │   │   ├── D2dGeometrySink.cs
    │   │   │   │   ├── D2dGraphics.cs
    │   │   │   │   ├── D2dHwndGraphics.cs
    │   │   │   │   ├── D2dLinearGradientBrush.cs
    │   │   │   │   ├── D2dRadialGradientBrush.cs
    │   │   │   │   ├── D2dResource.cs
    │   │   │   │   ├── D2dShapes.cs
    │   │   │   │   ├── D2dSolidColorBrush.cs
    │   │   │   │   ├── D2dStrokeStyle.cs
    │   │   │   │   ├── D2dTextFormat.cs
    │   │   │   │   ├── D2dTextLayout.cs
    │   │   │   │   ├── D2dToSharpDX.cs
    │   │   │   │   ├── D2dUtil.cs
    │   │   │   │   └── D2dWicGraphics.cs
    │   │   │   ├── DirectWrite
    │   │   │   │   ├── ClusterMetrics.cs
    │   │   │   │   ├── HitTestMetrics.cs
    │   │   │   │   ├── LineMetrics.cs
    │   │   │   │   └── TextEditor.cs
    │   │   │   ├── Dom
    │   │   │   │   ├── AttributePropertyDescriptor.cs
    │   │   │   │   ├── BindingAdapter.cs
    │   │   │   │   ├── ChildAttributeCollectionPropertyDescriptor.cs
    │   │   │   │   ├── ChildAttributePropertyDescriptor.cs
    │   │   │   │   ├── ChildPropertyDescriptor.cs
    │   │   │   │   ├── CustomTypeDescriptorNodeAdapter.cs
    │   │   │   │   ├── DomNodeHelpAdapter.cs
    │   │   │   │   ├── DomNodeQueryRoot.cs
    │   │   │   │   ├── DomNodeReplaceToolStrip.cs
    │   │   │   │   ├── DomNodeSearchToolStrip.cs
    │   │   │   │   ├── DomNodeTypeExtensions.cs
    │   │   │   │   ├── EditingContext.cs
    │   │   │   │   ├── GlobalHistoryContext.cs
    │   │   │   │   ├── HistoryContext.cs
    │   │   │   │   ├── ListContext.cs
    │   │   │   │   ├── MultipleHistoryContext.cs
    │   │   │   │   ├── MultiPropertyDescriptor.cs
    │   │   │   │   ├── NodeTypePaletteItem.cs
    │   │   │   │   ├── ObservableCustomTypeDescriptorNodeAdapter.cs
    │   │   │   │   ├── PropertyDescriptor.cs
    │   │   │   │   ├── SelectionContext.cs
    │   │   │   │   ├── Template.cs
    │   │   │   │   └── TemplateFolder.cs
    │   │   │   ├── EnumUtil.cs
    │   │   │   ├── FileFilterBuilder.cs
    │   │   │   ├── Gdi32.cs
    │   │   │   ├── GroupAttribute.cs
    │   │   │   ├── IAnnotatedParams.cs
    │   │   │   ├── ImageResourceAttribute.cs
    │   │   │   ├── Input
    │   │   │   │   ├── DragEventArgs.cs
    │   │   │   │   ├── KeyEventArgs.cs
    │   │   │   │   ├── KeyPressEventArgs.cs
    │   │   │   │   ├── Keys.cs
    │   │   │   │   ├── Message.cs
    │   │   │   │   ├── MouseButtons.cs
    │   │   │   │   ├── MouseEventArgs.cs
    │   │   │   │   └── PreviewKeyDownEventArgs.cs
    │   │   │   ├── IPerformanceTarget.cs
    │   │   │   ├── KeysUtil.cs
    │   │   │   ├── Models
    │   │   │   │   ├── AdapterViewModel.cs
    │   │   │   │   └── CheckedTreeNode.cs
    │   │   │   ├── ObservableUtil.cs
    │   │   │   ├── Properties
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Resources.Designer.cs
    │   │   │   │   └── Resources.resx
    │   │   │   ├── Rendering
    │   │   │   │   ├── AxisSystemType.cs
    │   │   │   │   ├── Camera.cs
    │   │   │   │   ├── ControlScheme.cs
    │   │   │   │   ├── ControlSchemes.cs
    │   │   │   │   ├── HitRecord.cs
    │   │   │   │   ├── IBeforeLocalTransform.cs
    │   │   │   │   ├── IBoundable.cs
    │   │   │   │   ├── IBuildSceneNode.cs
    │   │   │   │   ├── IGeometricPick.cs
    │   │   │   │   ├── IIntersectable.cs
    │   │   │   │   ├── IManipulator.cs
    │   │   │   │   ├── IPickAction.cs
    │   │   │   │   ├── IQueryObjectStats.cs
    │   │   │   │   ├── IRenderableParent.cs
    │   │   │   │   ├── IRenderAction.cs
    │   │   │   │   ├── IRenderObject.cs
    │   │   │   │   ├── IRenderPick.cs
    │   │   │   │   ├── IRenderStateCreator.cs
    │   │   │   │   ├── IRenderThumbnail.cs
    │   │   │   │   ├── ISceneGraphHierarchy.cs
    │   │   │   │   ├── ISetsLocalTransform.cs
    │   │   │   │   ├── ITransformable.cs
    │   │   │   │   ├── ManipulatorEventArgs.cs
    │   │   │   │   ├── MaxControlScheme.cs
    │   │   │   │   ├── MayaControlScheme.cs
    │   │   │   │   ├── MayaLaptopControlScheme.cs
    │   │   │   │   ├── ObjectStats.cs
    │   │   │   │   ├── PickEventArgs.cs
    │   │   │   │   ├── ProjectionType.cs
    │   │   │   │   ├── QuadViewLayoutType.cs
    │   │   │   │   ├── RenderMode.cs
    │   │   │   │   ├── RenderObjectList.cs
    │   │   │   │   ├── RenderState.cs
    │   │   │   │   ├── RenderStateGuardian.cs
    │   │   │   │   ├── RenderStateSorter.cs
    │   │   │   │   ├── RenderStateStack.cs
    │   │   │   │   ├── Scene.cs
    │   │   │   │   ├── SceneGraphBuilder.cs
    │   │   │   │   ├── SceneNode.cs
    │   │   │   │   ├── TransformationTypes.cs
    │   │   │   │   ├── TransformUtils.cs
    │   │   │   │   ├── TraverseNode.cs
    │   │   │   │   ├── TraverseSortUtils.cs
    │   │   │   │   ├── TraverseState.cs
    │   │   │   │   └── ViewTypes.cs
    │   │   │   ├── Resources
    │   │   │   │   ├── 4WAY05.CUR
    │   │   │   │   ├── add.png
    │   │   │   │   ├── AlignBottoms16.png
    │   │   │   │   ├── AlignBottoms24.png
    │   │   │   │   ├── AlignBottoms32.png
    │   │   │   │   ├── AlignCenters16.png
    │   │   │   │   ├── AlignCenters24.png
    │   │   │   │   ├── AlignCenters32.png
    │   │   │   │   ├── AlignLefts16.png
    │   │   │   │   ├── AlignLefts24.png
    │   │   │   │   ├── AlignLefts32.png
    │   │   │   │   ├── AlignMiddles16.png
    │   │   │   │   ├── AlignMiddles24.png
    │   │   │   │   ├── AlignMiddles32.png
    │   │   │   │   ├── AlignRights16.png
    │   │   │   │   ├── AlignRights24.png
    │   │   │   │   ├── AlignRights32.png
    │   │   │   │   ├── AlignTops16.png
    │   │   │   │   ├── AlignTops24.png
    │   │   │   │   ├── AlignTops32.png
    │   │   │   │   ├── Alphabetical.png
    │   │   │   │   ├── arrow_down_blue.png
    │   │   │   │   ├── arrow_up_blue.png
    │   │   │   │   ├── AtfIcon.ico
    │   │   │   │   ├── AtfLogo.png
    │   │   │   │   ├── ByCategory.png
    │   │   │   │   ├── checked_items.png
    │   │   │   │   ├── component16.png
    │   │   │   │   ├── component24.png
    │   │   │   │   ├── component32.png
    │   │   │   │   ├── components.png
    │   │   │   │   ├── Computer.ico
    │   │   │   │   ├── Copy16.png
    │   │   │   │   ├── Copy24.png
    │   │   │   │   ├── Copy32.png
    │   │   │   │   ├── cube_molecule_new.png
    │   │   │   │   ├── cube_molecule.png
    │   │   │   │   ├── Cut16.png
    │   │   │   │   ├── Cut24.png
    │   │   │   │   ├── Cut32.png
    │   │   │   │   ├── Data16.png
    │   │   │   │   ├── Data24.png
    │   │   │   │   ├── Data32.png
    │   │   │   │   ├── Delete16.png
    │   │   │   │   ├── Delete24.png
    │   │   │   │   ├── Delete32.png
    │   │   │   │   ├── delete.png
    │   │   │   │   ├── diskdrive16.png
    │   │   │   │   ├── diskdrive24.png
    │   │   │   │   ├── diskdrive32.png
    │   │   │   │   ├── Document16.png
    │   │   │   │   ├── Document24.png
    │   │   │   │   ├── Document32.png
    │   │   │   │   ├── document_add.png
    │   │   │   │   ├── document_check.png
    │   │   │   │   ├── document_into.png
    │   │   │   │   ├── document_lock.png
    │   │   │   │   ├── document_refresh.png
    │   │   │   │   ├── document_revert.png
    │   │   │   │   ├── document_unknown.png
    │   │   │   │   ├── document_warning.png
    │   │   │   │   ├── dom_interface.png
    │   │   │   │   ├── edit_locked16x16.png
    │   │   │   │   ├── edit_locked24x24.png
    │   │   │   │   ├── edit_locked32x32.png
    │   │   │   │   ├── edit_unlocked16x16.png
    │   │   │   │   ├── edit_unlocked24x24.png
    │   │   │   │   ├── edit_unlocked32x32.png
    │   │   │   │   ├── factory.png
    │   │   │   │   ├── filter.ico
    │   │   │   │   ├── Find16.png
    │   │   │   │   ├── Find24.png
    │   │   │   │   ├── Find32.png
    │   │   │   │   ├── FitToSize16.png
    │   │   │   │   ├── FitToSize24.png
    │   │   │   │   ├── FitToSize32.png
    │   │   │   │   ├── Folder16.png
    │   │   │   │   ├── Folder24.png
    │   │   │   │   ├── Folder32.png
    │   │   │   │   ├── folderClosedReference16.png
    │   │   │   │   ├── Folder.ico
    │   │   │   │   ├── folderOpenReference16.png
    │   │   │   │   ├── gear_preferences.ico
    │   │   │   │   ├── greenPlus13.png
    │   │   │   │   ├── Group16.png
    │   │   │   │   ├── Group24.png
    │   │   │   │   ├── Group32.png
    │   │   │   │   ├── Help16.png
    │   │   │   │   ├── Help24.png
    │   │   │   │   ├── Help32.png
    │   │   │   │   ├── HideSelection16.png
    │   │   │   │   ├── HideSelection24.png
    │   │   │   │   ├── HideSelection32.png
    │   │   │   │   ├── HO_SPLIT.CUR
    │   │   │   │   ├── Isolate16.png
    │   │   │   │   ├── Isolate24.png
    │   │   │   │   ├── Isolate32.png
    │   │   │   │   ├── ja
    │   │   │   │   │   └── Localization.xml
    │   │   │   │   ├── layer.png
    │   │   │   │   ├── Localization.xml
    │   │   │   │   ├── lock13.png
    │   │   │   │   ├── Lock16.png
    │   │   │   │   ├── Lock24.png
    │   │   │   │   ├── Lock32.png
    │   │   │   │   ├── LockUI.png
    │   │   │   │   ├── nav_left.png
    │   │   │   │   ├── nav_right.png
    │   │   │   │   ├── package_error.png
    │   │   │   │   ├── package.png
    │   │   │   │   ├── Paste16.png
    │   │   │   │   ├── Paste24.png
    │   │   │   │   ├── Paste32.png
    │   │   │   │   ├── pin_green16.png
    │   │   │   │   ├── pin_green24.png
    │   │   │   │   ├── pin_green32.png
    │   │   │   │   ├── pin_grey16.png
    │   │   │   │   ├── pin_grey24.png
    │   │   │   │   ├── pin_grey32.png
    │   │   │   │   ├── prefabFolder.png
    │   │   │   │   ├── Preferences16.png
    │   │   │   │   ├── Preferences24.png
    │   │   │   │   ├── Preferences32.png
    │   │   │   │   ├── printer16.png
    │   │   │   │   ├── printer24.png
    │   │   │   │   ├── printer32.png
    │   │   │   │   ├── printer_preferences16.png
    │   │   │   │   ├── printer_preferences24.png
    │   │   │   │   ├── printer_preferences32.png
    │   │   │   │   ├── printer_view16.png
    │   │   │   │   ├── printer_view24.png
    │   │   │   │   ├── printer_view32.png
    │   │   │   │   ├── redCheck13.png
    │   │   │   │   ├── Redo16.png
    │   │   │   │   ├── Redo24.png
    │   │   │   │   ├── Redo32.png
    │   │   │   │   ├── referenceNull.png
    │   │   │   │   ├── referenceOverride.png
    │   │   │   │   ├── reference.png
    │   │   │   │   ├── Reset16.png
    │   │   │   │   ├── resourceFolder.png
    │   │   │   │   ├── resource.png
    │   │   │   │   ├── Save16.png
    │   │   │   │   ├── Save24.png
    │   │   │   │   ├── Save32.png
    │   │   │   │   ├── SaveAll16.png
    │   │   │   │   ├── SaveAll24.png
    │   │   │   │   ├── SaveAll32.png
    │   │   │   │   ├── SaveAs16.png
    │   │   │   │   ├── SaveAs24.png
    │   │   │   │   ├── SaveAs32.png
    │   │   │   │   ├── SCEA.png
    │   │   │   │   ├── search.ico
    │   │   │   │   ├── Selection16.png
    │   │   │   │   ├── Selection24.png
    │   │   │   │   ├── Selection32.png
    │   │   │   │   ├── selection_find16x16.png
    │   │   │   │   ├── selection_find24x24.png
    │   │   │   │   ├── selection_find32x32.png
    │   │   │   │   ├── ShowAll16.png
    │   │   │   │   ├── ShowAll24.png
    │   │   │   │   ├── ShowAll32.png
    │   │   │   │   ├── ShowSelection16.png
    │   │   │   │   ├── ShowSelection24.png
    │   │   │   │   ├── ShowSelection32.png
    │   │   │   │   ├── sort_ascending.png
    │   │   │   │   ├── sort_descending.png
    │   │   │   │   ├── sourceControl_add.png
    │   │   │   │   ├── sourceControl_checkin.png
    │   │   │   │   ├── sourceControl_checkout.png
    │   │   │   │   ├── sourceControl_connect.png
    │   │   │   │   ├── sourceControl_disable.png
    │   │   │   │   ├── sourceControl_enable.png
    │   │   │   │   ├── sourceControl_getLatest.png
    │   │   │   │   ├── sourceControl_reconcile.png
    │   │   │   │   ├── sourceControl_refresh.png
    │   │   │   │   ├── sourceControl_revert.png
    │   │   │   │   ├── SubDocument16.png
    │   │   │   │   ├── SubDocument24.png
    │   │   │   │   ├── SubDocument32.png
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   ├── ui_locked16x16.png
    │   │   │   │   ├── ui_locked24x24.png
    │   │   │   │   ├── ui_locked32x32.png
    │   │   │   │   ├── ui_unlocked16x16.png
    │   │   │   │   ├── ui_unlocked24x24.png
    │   │   │   │   ├── ui_unlocked32x32.png
    │   │   │   │   ├── Undo16.png
    │   │   │   │   ├── Undo24.png
    │   │   │   │   ├── Undo32.png
    │   │   │   │   ├── Ungroup16.png
    │   │   │   │   ├── Ungroup24.png
    │   │   │   │   ├── Ungroup32.png
    │   │   │   │   ├── unknown13.png
    │   │   │   │   ├── Unlock16.png
    │   │   │   │   ├── Unlock24.png
    │   │   │   │   ├── Unlock32.png
    │   │   │   │   ├── UnlockUI.png
    │   │   │   │   ├── Unsorted.png
    │   │   │   │   ├── VE_SPLIT.CUR
    │   │   │   │   ├── warning.ico
    │   │   │   │   ├── ZoomIn16.png
    │   │   │   │   ├── ZoomIn24.png
    │   │   │   │   ├── ZoomIn32.png
    │   │   │   │   ├── ZoomOut16.png
    │   │   │   │   ├── ZoomOut24.png
    │   │   │   │   └── ZoomOut32.png
    │   │   │   ├── Resources.cs
    │   │   │   └── User32.cs
    │   │   ├── Atf.Gui.WinForms
    │   │   │   ├── Applications
    │   │   │   │   ├── AtfScriptVariables.cs
    │   │   │   │   ├── AutoDocumentService.cs
    │   │   │   │   ├── AutomationService.cs
    │   │   │   │   ├── CommandInfos.cs
    │   │   │   │   ├── CommandLineArgsService.cs
    │   │   │   │   ├── CommandService.cs
    │   │   │   │   ├── ControlHostService.cs
    │   │   │   │   ├── ControlInfo.cs
    │   │   │   │   ├── DefaultTabCommands.cs
    │   │   │   │   ├── Dialogs.cs
    │   │   │   │   ├── ErrorDialogService.cs
    │   │   │   │   ├── FileDialogService.cs
    │   │   │   │   ├── FileWatcherService.cs
    │   │   │   │   ├── FunctionalTestBase.cs
    │   │   │   │   ├── GridPropertyEditor.cs
    │   │   │   │   ├── HelpAboutCommand.cs
    │   │   │   │   ├── IControlHostClient.cs
    │   │   │   │   ├── IControlHostService.cs
    │   │   │   │   ├── IControlRegistry.cs
    │   │   │   │   ├── IDialogService.cs
    │   │   │   │   ├── IFileDialogService.cs
    │   │   │   │   ├── ILayoutConstraint.cs
    │   │   │   │   ├── ILayoutContext.cs
    │   │   │   │   ├── ImageThumbnailResolver.cs
    │   │   │   │   ├── IMainWindow.cs
    │   │   │   │   ├── Listers
    │   │   │   │   │   ├── FilteredTreeControlEditor.cs
    │   │   │   │   │   ├── FilteredTreeView.cs
    │   │   │   │   │   ├── HistoryLister.cs
    │   │   │   │   │   ├── IPrototypingContext.cs
    │   │   │   │   │   ├── ItemInfos.cs
    │   │   │   │   │   ├── ITemplatingContext.cs
    │   │   │   │   │   ├── LayerLister.cs
    │   │   │   │   │   ├── ListViewAdapter.cs
    │   │   │   │   │   ├── ListViewEditor.cs
    │   │   │   │   │   ├── ProjectLister.cs
    │   │   │   │   │   ├── PrototypeLister.cs
    │   │   │   │   │   ├── ResourceLister.cs
    │   │   │   │   │   ├── TreeControlAdapter.cs
    │   │   │   │   │   ├── TreeControlEditor.cs
    │   │   │   │   │   ├── TreeListViewAdapter.cs
    │   │   │   │   │   ├── TreeListViewEditor.cs
    │   │   │   │   │   └── WinFormsItemInfo.cs
    │   │   │   │   ├── MainFormAdapter.cs
    │   │   │   │   ├── MainForm.cs
    │   │   │   │   ├── MainForm.resx
    │   │   │   │   ├── MainWindowTitleService.cs
    │   │   │   │   ├── MenuInfos.cs
    │   │   │   │   ├── NetworkTargetServices
    │   │   │   │   │   ├── ITargetService.cs
    │   │   │   │   │   ├── Target.cs
    │   │   │   │   │   ├── TargetDialog.cs
    │   │   │   │   │   ├── TargetDialog.designer.cs
    │   │   │   │   │   ├── TargetDialog.resx
    │   │   │   │   │   ├── TargetEditDialog.cs
    │   │   │   │   │   ├── TargetEditDialog.designer.cs
    │   │   │   │   │   ├── TargetEditDialog.resx
    │   │   │   │   │   ├── TargetEnumerationService.cs
    │   │   │   │   │   ├── TargetService.cs
    │   │   │   │   │   ├── TargetTcpSocket.cs
    │   │   │   │   │   └── TcpCommandClient.cs
    │   │   │   │   ├── OscCommands.cs
    │   │   │   │   ├── OscDialog.cs
    │   │   │   │   ├── OscDialog.Designer.cs
    │   │   │   │   ├── OscDialog.resx
    │   │   │   │   ├── OutputService.cs
    │   │   │   │   ├── PaletteService.cs
    │   │   │   │   ├── PerformanceMonitor.cs
    │   │   │   │   ├── PropertyEditingCommands.cs
    │   │   │   │   ├── PropertyEditor.cs
    │   │   │   │   ├── RenameCommand.cs
    │   │   │   │   ├── RenameCommandDialog.cs
    │   │   │   │   ├── RenameCommandDialog.designer.cs
    │   │   │   │   ├── RenameCommandDialog.resx
    │   │   │   │   ├── ScriptConsole.cs
    │   │   │   │   ├── SearchAndReplace
    │   │   │   │   │   ├── DomNodePropertySearchService.cs
    │   │   │   │   │   ├── IReplaceUI.cs
    │   │   │   │   │   ├── IResultsUI.cs
    │   │   │   │   │   ├── ISearchableContext.cs
    │   │   │   │   │   ├── ISearchableContextUI.cs
    │   │   │   │   │   └── ISearchUI.cs
    │   │   │   │   ├── SettingsDialog.cs
    │   │   │   │   ├── SettingsDialog.resx
    │   │   │   │   ├── SettingsLoadSaveDialog.cs
    │   │   │   │   ├── SettingsLoadSaveDialog.designer.cs
    │   │   │   │   ├── SettingsLoadSaveDialog.resx
    │   │   │   │   ├── SettingsService.cs
    │   │   │   │   ├── SingleInstanceService.cs
    │   │   │   │   ├── SkinService
    │   │   │   │   │   ├── ControlGradient.cs
    │   │   │   │   │   ├── DockColors.cs
    │   │   │   │   │   ├── EmbeddedImage.cs
    │   │   │   │   │   ├── FormNcRenderer.cs
    │   │   │   │   │   ├── Schemas
    │   │   │   │   │   │   ├── GenSchemaDef.cmd
    │   │   │   │   │   │   ├── SkinSchema.cs
    │   │   │   │   │   │   └── skin.xsd
    │   │   │   │   │   ├── SkinEditor.cs
    │   │   │   │   │   ├── Skins
    │   │   │   │   │   │   ├── Dark.skn
    │   │   │   │   │   │   └── Light.skn
    │   │   │   │   │   ├── SkinService.cs
    │   │   │   │   │   └── Skin.tmpl
    │   │   │   │   ├── StandardEditCommands.cs
    │   │   │   │   ├── StandardFileCommands.cs
    │   │   │   │   ├── StandardFileExitCommand.cs
    │   │   │   │   ├── StandardLayoutCommands.cs
    │   │   │   │   ├── StandardPrintCommands.cs
    │   │   │   │   ├── StatusService.cs
    │   │   │   │   ├── TabbedControlSelector.cs
    │   │   │   │   ├── ThumbnailService.cs
    │   │   │   │   ├── UnhandledExceptionDialog.cs
    │   │   │   │   ├── UnhandledExceptionDialog.Designer.cs
    │   │   │   │   ├── UnhandledExceptionDialog.resx
    │   │   │   │   ├── UnhandledExceptionService.cs
    │   │   │   │   ├── VersionControl
    │   │   │   │   │   ├── CheckInForm.cs
    │   │   │   │   │   ├── CheckInForm.Designer.cs
    │   │   │   │   │   ├── CheckInForm.resx
    │   │   │   │   │   ├── ReconcileForm.cs
    │   │   │   │   │   ├── ReconcileForm.designer.cs
    │   │   │   │   │   ├── ReconcileForm.resx
    │   │   │   │   │   └── SourceControlCommands.cs
    │   │   │   │   ├── WebHelpCommands.cs
    │   │   │   │   ├── WebHelp.cs
    │   │   │   │   ├── WebServices
    │   │   │   │   │   ├── FeedbackForm.cs
    │   │   │   │   │   ├── FeedbackForm.resx
    │   │   │   │   │   ├── ProjectMappingAttribute.cs
    │   │   │   │   │   ├── UserFeedbackService.cs
    │   │   │   │   │   ├── VersionCheck.cs
    │   │   │   │   │   └── VersionUpdateService.cs
    │   │   │   │   └── WindowLayoutServiceCommands.cs
    │   │   │   ├── Atf.Gui.WinForms.vs2010.csproj
    │   │   │   ├── ChartUtil.cs
    │   │   │   ├── ClassDiagram1.cd
    │   │   │   ├── Controls
    │   │   │   │   ├── AboutDialog.cs
    │   │   │   │   ├── AboutDialog.resx
    │   │   │   │   ├── AboutSysInfoDialog.cs
    │   │   │   │   ├── AboutSysInfoDialog.resx
    │   │   │   │   ├── Adaptable
    │   │   │   │   │   ├── AdaptableControl.cs
    │   │   │   │   │   ├── AnnotatingCommands.cs
    │   │   │   │   │   ├── AnnotationAdapter.cs
    │   │   │   │   │   ├── AutoTranslateAdapter.cs
    │   │   │   │   │   ├── CanvasAdapter.cs
    │   │   │   │   │   ├── ContextMenuAdapter.cs
    │   │   │   │   │   ├── ControlAdapter.cs
    │   │   │   │   │   ├── CoordinateAxisAdapter.cs
    │   │   │   │   │   ├── D2dAdaptableControl.cs
    │   │   │   │   │   ├── D2dAnnotationAdapter.cs
    │   │   │   │   │   ├── D2dGridAdapter.cs
    │   │   │   │   │   ├── D2dRectangleDragRenderer.cs
    │   │   │   │   │   ├── D2dRectangleDragSelector.cs
    │   │   │   │   │   ├── DiagramExpander.cs
    │   │   │   │   │   ├── DiagramLabel.cs
    │   │   │   │   │   ├── DiagramPin.cs
    │   │   │   │   │   ├── DiagramTheme.cs
    │   │   │   │   │   ├── DiagramVisibilityCheck.cs
    │   │   │   │   │   ├── DragDropAdapter.cs
    │   │   │   │   │   ├── DraggingControlAdapter.cs
    │   │   │   │   │   ├── DragSelectionEventArgs.cs
    │   │   │   │   │   ├── Graphs
    │   │   │   │   │   │   ├── Circuit
    │   │   │   │   │   │   │   ├── CircuitControlRegistry.cs
    │   │   │   │   │   │   │   ├── CircuitDocument.cs
    │   │   │   │   │   │   │   ├── CircuitEditingContext.cs
    │   │   │   │   │   │   │   ├── CircuitValidator.cs
    │   │   │   │   │   │   │   ├── GroupingCommands.cs
    │   │   │   │   │   │   │   ├── GroupPinEditor.cs
    │   │   │   │   │   │   │   ├── LayeringCommands.cs
    │   │   │   │   │   │   │   ├── LayeringContext.cs
    │   │   │   │   │   │   │   ├── PrototypingContext.cs
    │   │   │   │   │   │   │   ├── ViewingContext.cs
    │   │   │   │   │   │   │   └── WireStyleProvider.cs
    │   │   │   │   │   │   ├── CircuitRenderer.cs
    │   │   │   │   │   │   ├── D2dCircuitRenderer.cs
    │   │   │   │   │   │   ├── D2dDigraphRenderer.cs
    │   │   │   │   │   │   ├── D2dGraphAdapter.cs
    │   │   │   │   │   │   ├── D2dGraphEdgeEditAdapter.cs
    │   │   │   │   │   │   ├── D2dGraphNodeEditAdapter.cs
    │   │   │   │   │   │   ├── D2dStatechartRenderer.cs
    │   │   │   │   │   │   ├── D2dSubCircuitRenderer.cs
    │   │   │   │   │   │   ├── D2dSubgraphAdapter.cs
    │   │   │   │   │   │   ├── DigraphRenderer.cs
    │   │   │   │   │   │   ├── GraphAdapter.cs
    │   │   │   │   │   │   ├── GraphEdgeEditAdapter.cs
    │   │   │   │   │   │   ├── GraphNodeEditAdapter.cs
    │   │   │   │   │   │   ├── GraphRenderer.cs
    │   │   │   │   │   │   ├── GraphViewCommands.cs
    │   │   │   │   │   │   ├── KeyboardGraphNavigator.cs
    │   │   │   │   │   │   ├── KeyboardIOGraphNavigator.cs
    │   │   │   │   │   │   ├── NumberedRoute.cs
    │   │   │   │   │   │   └── StatechartRenderer.cs
    │   │   │   │   │   ├── GridAdapter.cs
    │   │   │   │   │   ├── HoverAdapter.cs
    │   │   │   │   │   ├── IAutoTranslateAdapter.cs
    │   │   │   │   │   ├── ICanvasAdapter.cs
    │   │   │   │   │   ├── IControlAdapter.cs
    │   │   │   │   │   ├── IDragSelector.cs
    │   │   │   │   │   ├── IItemDragAdapter.cs
    │   │   │   │   │   ├── ILabelEditAdapter.cs
    │   │   │   │   │   ├── IPickingAdapter2.cs
    │   │   │   │   │   ├── IPickingAdapter.cs
    │   │   │   │   │   ├── IPrintingAdapter.cs
    │   │   │   │   │   ├── ISelectionAdapter.cs
    │   │   │   │   │   ├── ITransformAdapter.cs
    │   │   │   │   │   ├── LabelEditAdapter.cs
    │   │   │   │   │   ├── MouseLayoutManipulator.cs
    │   │   │   │   │   ├── MouseTransformManipulator.cs
    │   │   │   │   │   ├── MouseWheelManipulator.cs
    │   │   │   │   │   ├── RectangleDragSelector.cs
    │   │   │   │   │   ├── ScrollbarAdapter.cs
    │   │   │   │   │   ├── SelectionAdapter.cs
    │   │   │   │   │   ├── ShowPinsToggle.cs
    │   │   │   │   │   ├── TransformAdapter.cs
    │   │   │   │   │   └── ViewingAdapter.cs
    │   │   │   │   ├── BoolInputControl.cs
    │   │   │   │   ├── BoolInputControl.resx
    │   │   │   │   ├── CanvasControl.cs
    │   │   │   │   ├── CanvasControl.resx
    │   │   │   │   ├── CollapsibleGroupBox.cs
    │   │   │   │   ├── ColorPicker
    │   │   │   │   │   ├── AdobeColors.cs
    │   │   │   │   │   ├── ColorBox.cs
    │   │   │   │   │   ├── ColorBox.resx
    │   │   │   │   │   ├── ColorPicker.cs
    │   │   │   │   │   ├── ColorPickerEditor.cs
    │   │   │   │   │   ├── ColorPicker.resx
    │   │   │   │   │   ├── VerticalColorSlider.cs
    │   │   │   │   │   └── VerticalColorSlider.resx
    │   │   │   │   ├── ConfirmationDialog.cs
    │   │   │   │   ├── ConfirmationDialog.resx
    │   │   │   │   ├── ConsoleBox
    │   │   │   │   │   ├── ConsoleTextBox.cs
    │   │   │   │   │   └── IConsoleTextBox.cs
    │   │   │   │   ├── CurveEditing
    │   │   │   │   │   ├── Cartesian2dCanvas.cs
    │   │   │   │   │   ├── CurveCanvas.cs
    │   │   │   │   │   ├── CurveEditingControl.cs
    │   │   │   │   │   ├── CurveEditor.cs
    │   │   │   │   │   └── CurveRenderer.cs
    │   │   │   │   ├── CustomColorTable.cs
    │   │   │   │   ├── CustomFileDialog.cs
    │   │   │   │   ├── CustomizeKeyboardDialog.cs
    │   │   │   │   ├── CustomizeKeyboardDialog.designer.cs
    │   │   │   │   ├── CustomizeKeyboardDialog.resx
    │   │   │   │   ├── CustomOpenFileDialog.cs
    │   │   │   │   ├── CustomSaveFileDialog.cs
    │   │   │   │   ├── CustomToolStripRenderer.cs
    │   │   │   │   ├── DataBoundListView.cs
    │   │   │   │   ├── DataEditing
    │   │   │   │   │   ├── BoolDataEditor.cs
    │   │   │   │   │   ├── ColorDataEditor.cs
    │   │   │   │   │   ├── DataEditor.cs
    │   │   │   │   │   ├── DataEditorTheme.cs
    │   │   │   │   │   ├── FloatDataEditor.cs
    │   │   │   │   │   └── StringDataEditor.cs
    │   │   │   │   ├── Direct2DControl.cs
    │   │   │   │   ├── ErrorDialog.cs
    │   │   │   │   ├── ErrorDialog.Designer.cs
    │   │   │   │   ├── ErrorDialog.resx
    │   │   │   │   ├── FilteredFileDialogBase.cs
    │   │   │   │   ├── FilteredFileDialogBase.designer.cs
    │   │   │   │   ├── FilteredFileDialogBase.resx
    │   │   │   │   ├── FindFileDialog.cs
    │   │   │   │   ├── FindFileDialog.designer.cs
    │   │   │   │   ├── FindFileDialog.resx
    │   │   │   │   ├── FindFileWithSuggestionDialog.cs
    │   │   │   │   ├── FindFileWithSuggestionDialog.designer.cs
    │   │   │   │   ├── FindFileWithSuggestionDialog.resx
    │   │   │   │   ├── FloatInputControl.cs
    │   │   │   │   ├── FloatInputControl.resx
    │   │   │   │   ├── FolderSelectDialog.cs
    │   │   │   │   ├── HoverBase.cs
    │   │   │   │   ├── HoverBase.resx
    │   │   │   │   ├── HoverEventArgs.cs
    │   │   │   │   ├── HoverLabel.cs
    │   │   │   │   ├── HoverLabel.resx
    │   │   │   │   ├── IntInputControl.cs
    │   │   │   │   ├── IntInputControl.resx
    │   │   │   │   ├── NoFocusTrackBar.cs
    │   │   │   │   ├── NumericMatrixControl.cs
    │   │   │   │   ├── NumericTextBox.cs
    │   │   │   │   ├── NumericTupleControl.cs
    │   │   │   │   ├── OpenFilteredFileDialog.cs
    │   │   │   │   ├── OverlayButton.cs
    │   │   │   │   ├── PerformanceMonitorControl.cs
    │   │   │   │   ├── PerformanceMonitorControl.Designer.cs
    │   │   │   │   ├── PerformanceMonitorControl.resx
    │   │   │   │   ├── ProgressDialog.cs
    │   │   │   │   ├── ProgressDialog.resx
    │   │   │   │   ├── PropertyEditing
    │   │   │   │   │   ├── ArrayEditingControl.cs
    │   │   │   │   │   ├── ArrayEditor.cs
    │   │   │   │   │   ├── BoolEditor.cs
    │   │   │   │   │   ├── BoundedFloatEditor.cs
    │   │   │   │   │   ├── BoundedIntEditor.cs
    │   │   │   │   │   ├── CollectionEditingControl.cs
    │   │   │   │   │   ├── CollectionEditor.cs
    │   │   │   │   │   ├── ColorPickerEditor.cs
    │   │   │   │   │   ├── CompositeOpenedEventArgs.cs
    │   │   │   │   │   ├── EmbeddedCollectionEditor.cs
    │   │   │   │   │   ├── EnumUITypeEditor.cs
    │   │   │   │   │   ├── FileUriEditor.cs
    │   │   │   │   │   ├── FlagsUITypeEditor.cs
    │   │   │   │   │   ├── FolderBrowserDialogUITypeEditor.cs
    │   │   │   │   │   ├── FolderUriEditor.cs
    │   │   │   │   │   ├── GridControl.cs
    │   │   │   │   │   ├── GridControlShowHidePropertiesDialog.cs
    │   │   │   │   │   ├── GridControlShowHidePropertiesDialog.Designer.cs
    │   │   │   │   │   ├── GridControlShowHidePropertiesDialog.resx
    │   │   │   │   │   ├── GridView.cs
    │   │   │   │   │   ├── ICompositePropertyControl.cs
    │   │   │   │   │   ├── IFormsOwner.cs
    │   │   │   │   │   ├── IPropertyEditor.cs
    │   │   │   │   │   ├── LongEnumEditor.cs
    │   │   │   │   │   ├── NestedCollectionEditor.cs
    │   │   │   │   │   ├── NestedCollectionEditorForm.cs
    │   │   │   │   │   ├── NestedCollectionEditorForm.designer.cs
    │   │   │   │   │   ├── NestedCollectionEditorForm.resx
    │   │   │   │   │   ├── NumericEditor.cs
    │   │   │   │   │   ├── NumericMatrixEditor.cs
    │   │   │   │   │   ├── NumericTupleEditor.cs
    │   │   │   │   │   ├── PropertyEditingControl.cs
    │   │   │   │   │   ├── PropertyEditorControlContext.cs
    │   │   │   │   │   ├── PropertyGrid.cs
    │   │   │   │   │   ├── PropertyGridView.cs
    │   │   │   │   │   ├── PropertyView.cs
    │   │   │   │   │   ├── TypeDescriptorContext.cs
    │   │   │   │   │   ├── UniformArrayEditor.cs
    │   │   │   │   │   └── WinFormsPropertyUtils.cs
    │   │   │   │   ├── QuadPanelControl.cs
    │   │   │   │   ├── SearchAndReplace
    │   │   │   │   │   ├── DomNodeNameSearchTextBox.cs
    │   │   │   │   │   ├── DomNodeReplaceToolStrip.cs
    │   │   │   │   │   ├── DomNodeSearchResultsListView.cs
    │   │   │   │   │   ├── DomNodeSearchToolStrip.cs
    │   │   │   │   │   ├── QueryInputTree
    │   │   │   │   │   │   ├── DomNodeQueryRoot.cs
    │   │   │   │   │   │   ├── QueryButton.cs
    │   │   │   │   │   │   ├── QueryLabel.cs
    │   │   │   │   │   │   ├── QueryNode.cs
    │   │   │   │   │   │   ├── QueryOption.cs
    │   │   │   │   │   │   ├── QueryOptionItem.cs
    │   │   │   │   │   │   ├── QueryRoot.cs
    │   │   │   │   │   │   ├── QuerySeparator.cs
    │   │   │   │   │   │   ├── QueryTextInput.cs
    │   │   │   │   │   │   └── QueryTree.cs
    │   │   │   │   │   ├── ReplaceTextBox.cs
    │   │   │   │   │   ├── ReplaceToolStrip.cs
    │   │   │   │   │   ├── SearchResultsListView.cs
    │   │   │   │   │   ├── SearchTextBox.cs
    │   │   │   │   │   ├── SearchToolStrip.cs
    │   │   │   │   │   └── StringSearchInputUI.cs
    │   │   │   │   ├── SplitButton.cs
    │   │   │   │   ├── TabbedControlSelectorDialog.cs
    │   │   │   │   ├── TabbedControlSelectorDialog.Designer.cs
    │   │   │   │   ├── TabbedControlSelectorDialog.resx
    │   │   │   │   ├── ThreadSafeProgressDialog.cs
    │   │   │   │   ├── ThumbnailControl.cs
    │   │   │   │   ├── ThumbnailControlItem.cs
    │   │   │   │   ├── Timelines
    │   │   │   │   │   ├── Direct2D
    │   │   │   │   │   │   ├── D2dDefaultTimelineRenderer.cs
    │   │   │   │   │   │   ├── D2dMoveManipulator.cs
    │   │   │   │   │   │   ├── D2dScaleManipulator.cs
    │   │   │   │   │   │   ├── D2dScrubberManipulator.cs
    │   │   │   │   │   │   ├── D2dSelectionManipulator.cs
    │   │   │   │   │   │   ├── D2dSnapManipulator.cs
    │   │   │   │   │   │   ├── D2dSplitManipulator.cs
    │   │   │   │   │   │   ├── D2dTimelineControl.cs
    │   │   │   │   │   │   └── D2dTimelineRenderer.cs
    │   │   │   │   │   ├── Gdi
    │   │   │   │   │   │   ├── DefaultTimelineRenderer.cs
    │   │   │   │   │   │   ├── MoveManipulator.cs
    │   │   │   │   │   │   ├── ScaleManipulator.cs
    │   │   │   │   │   │   ├── ScrubberManipulator.cs
    │   │   │   │   │   │   ├── SelectionManipulator.cs
    │   │   │   │   │   │   ├── SnapManipulator.cs
    │   │   │   │   │   │   ├── SplitManipulator.cs
    │   │   │   │   │   │   ├── TimelineControl.cs
    │   │   │   │   │   │   └── TimelineRenderer.cs
    │   │   │   │   │   └── HitEventArgs.cs
    │   │   │   │   ├── ToolStripAutoFitLabel.cs
    │   │   │   │   ├── ToolStripAutoFitTextBox.cs
    │   │   │   │   ├── ToolStripEx.cs
    │   │   │   │   ├── TreeControl.cs
    │   │   │   │   ├── TreeItemRenderer.cs
    │   │   │   │   ├── TreeListControl.cs
    │   │   │   │   ├── TreeListItemRenderer.cs
    │   │   │   │   ├── TreeListView.Column.cs
    │   │   │   │   ├── TreeListView.cs
    │   │   │   │   ├── TreeListView.ListView.cs
    │   │   │   │   ├── TreeListView.Node.cs
    │   │   │   │   ├── WindowLayoutManageDialog.cs
    │   │   │   │   ├── WindowLayoutManageDialog.Designer.cs
    │   │   │   │   ├── WindowLayoutManageDialog.resx
    │   │   │   │   ├── WindowLayoutNewDialog.cs
    │   │   │   │   ├── WindowLayoutNewDialog.Designer.cs
    │   │   │   │   └── WindowLayoutNewDialog.resx
    │   │   │   ├── Dom
    │   │   │   │   ├── DomExplorer.cs
    │   │   │   │   ├── DomRecorder.cs
    │   │   │   │   ├── TemplateLister.cs
    │   │   │   │   ├── TemplatingCommands.cs
    │   │   │   │   └── TemplatingContext.cs
    │   │   │   ├── DragDrop
    │   │   │   │   ├── ComDataObjectExtensions.cs
    │   │   │   │   ├── DragDataHelper.cs
    │   │   │   │   ├── DragDropDataObject.cs
    │   │   │   │   ├── DragDropExtender.cs
    │   │   │   │   ├── DragDropHelper.cs
    │   │   │   │   ├── DropDescription.cs
    │   │   │   │   ├── DropDescriptionHelper.cs
    │   │   │   │   ├── DropImageType.cs
    │   │   │   │   ├── IDragSourceHelper2.cs
    │   │   │   │   ├── IDropTargetHelper.cs
    │   │   │   │   ├── IStream.cs
    │   │   │   │   └── OleConverter.cs
    │   │   │   ├── FileIconUtil.cs
    │   │   │   ├── FindFileResolver.cs
    │   │   │   ├── GdiUtil.cs
    │   │   │   ├── Interop
    │   │   │   │   ├── DragEventArgsInterop.cs
    │   │   │   │   ├── InteropControl.cs
    │   │   │   │   ├── KeyEventArgsInterop.cs
    │   │   │   │   ├── KeysInterop.cs
    │   │   │   │   ├── MessageInterop.cs
    │   │   │   │   ├── MouseButtonsInterop.cs
    │   │   │   │   └── MouseEventArgsInterop.cs
    │   │   │   ├── KeysUtil.cs
    │   │   │   ├── Properties
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Resources.Designer.cs
    │   │   │   │   └── Resources.resx
    │   │   │   ├── Rendering
    │   │   │   │   ├── CameraController.cs
    │   │   │   │   ├── Controller.cs
    │   │   │   │   └── WinFormsControlSchemes.cs
    │   │   │   ├── Resources
    │   │   │   │   ├── ja
    │   │   │   │   │   ├── Atf.Gui.WinForms.resources.dll
    │   │   │   │   │   └── Localization.xml
    │   │   │   │   └── Localization.xml
    │   │   │   ├── ResourceUtil.cs
    │   │   │   ├── StandardIconUtil.cs
    │   │   │   ├── WaitCursor.cs
    │   │   │   └── WinFormsUtil.cs
    │   │   └── Atf.IronPython
    │   │       ├── Atf.IronPython.vs2010.csproj
    │   │       ├── BasicPythonService.cs
    │   │       ├── Properties
    │   │       │   └── AssemblyInfo.cs
    │   │       └── WinForms
    │   │           └── PythonService.cs
    │   ├── ReadMe.txt
    │   ├── ThirdParty
    │   │   ├── ActiPro
    │   │   │   ├── ActiproSoftware.Shared.Net20.dll
    │   │   │   ├── ActiproSoftware.SyntaxEditor.Addons.DotNet.Net20.dll
    │   │   │   ├── ActiproSoftware.SyntaxEditor.Net20.dll
    │   │   │   ├── ActiproSoftware.WinUICore.Net20.dll
    │   │   │   ├── End User License Agreement.pdf
    │   │   │   └── EULA Addendum for ATF.pdf
    │   │   ├── Bespoke
    │   │   │   ├── Bespoke.Common.dll
    │   │   │   ├── Bespoke.Common.Osc.dll
    │   │   │   └── License.txt
    │   │   ├── DockPanelSuite
    │   │   │   ├── license.txt
    │   │   │   └── WeifenLuo.WinFormsUI.Docking.dll
    │   │   ├── Interactivity
    │   │   │   ├── Redist.en.txt
    │   │   │   └── System.Windows.Interactivity.dll
    │   │   ├── IronPython
    │   │   │   ├── IronPython.dll
    │   │   │   ├── IronPython.Modules.dll
    │   │   │   ├── IronPython.Modules.XML
    │   │   │   ├── IronPython.XML
    │   │   │   ├── License.html
    │   │   │   ├── Microsoft.Dynamic.dll
    │   │   │   ├── Microsoft.Dynamic.xml
    │   │   │   ├── Microsoft.Scripting.dll
    │   │   │   ├── Microsoft.Scripting.xml
    │   │   │   └── Net35
    │   │   │       ├── IronPython.dll
    │   │   │       ├── IronPython.Modules.dll
    │   │   │       ├── IronPython.Modules.xml
    │   │   │       ├── IronPython.xml
    │   │   │       ├── Microsoft.Dynamic.dll
    │   │   │       ├── Microsoft.Dynamic.xml
    │   │   │       ├── Microsoft.Scripting.Core.dll
    │   │   │       ├── Microsoft.Scripting.Core.xml
    │   │   │       ├── Microsoft.Scripting.dll
    │   │   │       └── Microsoft.Scripting.xml
    │   │   ├── libcrashreport_net
    │   │   │   ├── libcrashreport_net.dll
    │   │   │   └── License.txt
    │   │   ├── Lua
    │   │   │   ├── License.txt
    │   │   │   ├── lua51.dll
    │   │   │   ├── LuaInterface.dll
    │   │   │   └── luanet.dll
    │   │   ├── nUnit
    │   │   │   ├── Legacy
    │   │   │   │   ├── nunit.core.dll
    │   │   │   │   ├── nunit.framework.dll
    │   │   │   │   ├── nunit.mocks.dll
    │   │   │   │   └── nunit.util.dll
    │   │   │   ├── license.rtf
    │   │   │   ├── nunit.core.dll
    │   │   │   ├── nunit.core.interfaces.dll
    │   │   │   ├── nunit.fixtures.dll
    │   │   │   ├── nunit.framework.dll
    │   │   │   └── nunit.util.dll
    │   │   ├── P4API.NET
    │   │   │   ├── clr4
    │   │   │   │   └── x86
    │   │   │   │       ├── p4api.net.dll
    │   │   │   │       ├── p4api.net.XML
    │   │   │   │       └── p4bridge.dll
    │   │   │   └── LICENSE.txt
    │   │   ├── P4.Net
    │   │   │   ├── clr2
    │   │   │   │   ├── p4api.dll
    │   │   │   │   └── x86
    │   │   │   │       └── p4dn.dll
    │   │   │   ├── clr4
    │   │   │   │   ├── P4API.dll
    │   │   │   │   └── x86
    │   │   │   │       └── p4dn.dll
    │   │   │   └── Copyright.html
    │   │   ├── SharpDX
    │   │   │   ├── ChangeLog.txt
    │   │   │   ├── License.txt
    │   │   │   ├── Readme.txt
    │   │   │   ├── ReleaseNotes.html
    │   │   │   ├── SharpDX.Animation.dll
    │   │   │   ├── SharpDX.D3DCompiler.dll
    │   │   │   ├── SharpDX.Direct2D1.dll
    │   │   │   ├── SharpDX.Direct3D10.dll
    │   │   │   ├── sharpdx_direct3d11_1_effects_x64.dll
    │   │   │   ├── sharpdx_direct3d11_1_effects_x86.dll
    │   │   │   ├── SharpDX.Direct3D11.dll
    │   │   │   ├── SharpDX.Direct3D11.Effects.dll
    │   │   │   ├── sharpdx_direct3d11_effects_x64.dll
    │   │   │   ├── sharpdx_direct3d11_effects_x86.dll
    │   │   │   ├── SharpDX.Direct3D9.dll
    │   │   │   ├── SharpDX.DirectInput.dll
    │   │   │   ├── SharpDX.DirectSound.dll
    │   │   │   ├── SharpDX.dll
    │   │   │   ├── SharpDX.DXGI.dll
    │   │   │   ├── SharpDX.MediaFoundation.dll
    │   │   │   ├── SharpDX.RawInput.dll
    │   │   │   ├── SharpDX.XACT3.dll
    │   │   │   ├── SharpDX.XAudio2.dll
    │   │   │   ├── SharpDX.XInput.dll
    │   │   │   ├── tkfont.exe
    │   │   │   └── tkfxc.exe
    │   │   ├── Tao.OpenGl
    │   │   │   ├── cg.dll
    │   │   │   ├── cgGL.dll
    │   │   │   ├── DDSUtils.dll
    │   │   │   ├── DevIL.dll
    │   │   │   ├── ILU.dll
    │   │   │   ├── ILUT.dll
    │   │   │   ├── License.txt
    │   │   │   ├── Tao.Cg.dll
    │   │   │   ├── Tao.DevIl.dll
    │   │   │   ├── Tao.FreeGlut.dll
    │   │   │   ├── Tao.Glfw.dll
    │   │   │   ├── Tao.Lua.dll
    │   │   │   ├── Tao.Ode.dll
    │   │   │   ├── Tao.OpenAl.dll
    │   │   │   ├── Tao.OpenGl.dll
    │   │   │   ├── Tao.PhysFs.dll
    │   │   │   ├── Tao.Platform.Windows.dll
    │   │   │   └── Tao.Sdl.dll
    │   │   ├── Wws.LiveConnect
    │   │   │   ├── clr2
    │   │   │   │   └── x86
    │   │   │   │       └── Wws.LiveConnect.dll
    │   │   │   ├── clr4
    │   │   │   │   └── x86
    │   │   │   │       └── Wws.LiveConnect.dll
    │   │   │   ├── license.txt
    │   │   │   └── Readme.txt
    │   │   └── Wws.UI
    │   │       ├── license.txt
    │   │       └── Wws.UI.Docking.dll
    │   └── wws_atf.component
    ├── build
    │   ├── LevelEditor.vs2010.sln
    │   ├── LevelEditor.vs2013.sln
    │   └── LevelEditor.vs2015.sln
    ├── CodeGenDom
    │   ├── CodeGenDom.vs2010.csproj
    │   ├── CodeGenDom.vs2010.sln
    │   ├── NativeCodeGen.cs
    │   ├── NativeInfo.cs
    │   ├── OutBin
    │   │   ├── Atf.Core.dll
    │   │   ├── CodeGenDom.exe
    │   │   ├── CodeGenDom.vshost.exe
    │   │   ├── CodeGenDom.vshost.exe.manifest
    │   │   └── libcrashreport_net.dll
    │   ├── Program.cs
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── Docs
    │   ├── DocsSource
    │   │   ├── LevelEditor Help.zip
    │   │   ├── LevelEditor-ProgrammingGuide_e.doc
    │   │   └── LevelEditor-UsersGuide_e.doc
    │   ├── LevelEditor-ProgrammingGuide_e.pdf
    │   └── LevelEditor-UsersGuide_e.pdf
    ├── LevelEditor
    │   ├── Commands
    │   │   ├── HelpAboutCommand.cs
    │   │   ├── LayeringCommands.cs
    │   │   ├── LevelEditorCommands.cs
    │   │   ├── LevelEditorFileCommands.cs
    │   │   ├── PaletteCommands.cs
    │   │   └── PivotCommands.cs
    │   ├── Contexts
    │   │   ├── BookmarkingContext.cs
    │   │   ├── GameContext.cs
    │   │   └── LayeringContext.cs
    │   ├── Documents
    │   │   ├── GameDocument.cs
    │   │   ├── GameDocumentRegistry.cs
    │   │   └── ResourceMetadataDocument.cs
    │   ├── DomNodeAdapters
    │   │   ├── Billboard.cs
    │   │   ├── Bookmark.cs
    │   │   ├── ControlPoint.cs
    │   │   ├── Curve.cs
    │   │   ├── Game.cs
    │   │   ├── GameObject.cs
    │   │   ├── GameObjectFolder.cs
    │   │   ├── GameObjectGroup.cs
    │   │   ├── GameObjectProperties.cs
    │   │   ├── GameObjectReference.cs
    │   │   ├── GameReference.cs
    │   │   ├── Grid.cs
    │   │   ├── Layer.cs
    │   │   ├── Lights.cs
    │   │   ├── Locator.cs
    │   │   ├── PrefabInstance.cs
    │   │   ├── ResourceReference.cs
    │   │   ├── Slot.cs
    │   │   └── TransformUpdater.cs
    │   ├── DomSerializers
    │   │   ├── CustomDomXmlReader.cs
    │   │   └── CustomDomXmlWriter.cs
    │   ├── GameAdapters.cs
    │   ├── GameEditor.cs
    │   ├── LevelEditorApplication.cs
    │   ├── LevelEditor.vs2010.csproj
    │   ├── Listers
    │   │   ├── BookmarkLister.cs
    │   │   └── GameProjectLister.cs
    │   ├── OnlineHelp
    │   │   ├── If Online Help Shows No Help Topics.pdf
    │   │   └── LevelEditor_Help.chm
    │   ├── OSC
    │   │   ├── OscClient.cs
    │   │   └── TouchOSC_layout.touchosc
    │   ├── PickFilters
    │   │   ├── GobPickFilter.cs
    │   │   └── SnapFilter.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   └── Resources.resx
    │   ├── Resources
    │   │   ├── ja
    │   │   │   └── Localization.xml
    │   │   ├── Localization.xml
    │   │   └── SplashImg.png
    │   ├── SchemaLoader.cs
    │   ├── schemas
    │   │   ├── gap.xsd
    │   │   ├── GenSchemaDef.bat
    │   │   ├── level_editor.xsd
    │   │   └── Schema.cs
    │   ├── Services
    │   │   ├── CustomFileSystemResourceFolder.cs
    │   │   ├── GameLoopService.cs
    │   │   ├── PrefabService.cs
    │   │   ├── PrototypingService.cs
    │   │   ├── ResourceConverter.cs
    │   │   ├── ResourceMetadataService.cs
    │   │   └── SplashForm.cs
    │   ├── Terrain
    │   │   ├── CreateTerrainDlg.cs
    │   │   ├── CreateTerrainDlg.Designer.cs
    │   │   ├── CreateTerrainDlg.resx
    │   │   ├── CreateTerrainMapDlg.cs
    │   │   ├── CreateTerrainMapDlg.Designer.cs
    │   │   ├── CreateTerrainMapDlg.resx
    │   │   ├── ITerrainSurface.cs
    │   │   ├── LayerMap.cs
    │   │   ├── TerrainBrush.cs
    │   │   ├── TerrainEditorControl.cs
    │   │   ├── TerrainEditorControl.Designer.cs
    │   │   ├── TerrainEditorControl.resx
    │   │   ├── TerrainEditor.cs
    │   │   ├── TerrainGob.cs
    │   │   └── TerrainManipulator.cs
    │   └── Validators
    │       └── CustomLockingValidator.cs
    ├── LevelEditorCore
    │   ├── Annotations
    │   │   └── Annotations.cs
    │   ├── Commands
    │   │   ├── CameraCommands.cs
    │   │   ├── DesignViewCommands.cs
    │   │   ├── GroupCommands.cs
    │   │   ├── ManipulatorCommands.cs
    │   │   ├── PickFilterCommands.cs
    │   │   └── ShowCommands.cs
    │   ├── DesignViews
    │   │   ├── ArcBallCameraController.cs
    │   │   ├── CameraController.cs
    │   │   ├── DesignViewControl.cs
    │   │   ├── DesignView.cs
    │   │   ├── DesignViewSettings.cs
    │   │   ├── FlyCameraController.cs
    │   │   ├── MayaStyleCameraController.cs
    │   │   ├── ViewControl.cs
    │   │   └── WalkCameraController.cs
    │   ├── DisposableObject.cs
    │   ├── GameEngineProxy
    │   │   ├── EngineInfo.cs
    │   │   ├── GameEngineProxy.cs
    │   │   └── ResourceInfo.cs
    │   ├── Globals.cs
    │   ├── ImageThumbnailResolver.cs
    │   ├── Interfaces
    │   │   ├── IBoundable.cs
    │   │   ├── IControlPoint.cs
    │   │   ├── IDesignView.cs
    │   │   ├── IEditableResourceOwner.cs
    │   │   ├── IFileSystemResourceFolder.cs
    │   │   ├── IGameContext.cs
    │   │   ├── IGame.cs
    │   │   ├── IGameDocument.cs
    │   │   ├── IGameDocumentRegistry.cs
    │   │   ├── IGameObject.cs
    │   │   ├── IGameObjectFolder.cs
    │   │   ├── IGameObjectGroup.cs
    │   │   ├── IGrid.cs
    │   │   ├── IHierarchical.cs
    │   │   ├── ILayer.cs
    │   │   ├── ILinear.cs
    │   │   ├── IListable.cs
    │   │   ├── ILockable.cs
    │   │   ├── IManipulator.cs
    │   │   ├── IManipulatorNotify.cs
    │   │   ├── INameable.cs
    │   │   ├── INativeObject.cs
    │   │   ├── IPickFilter.cs
    │   │   ├── IPrefab.cs
    │   │   ├── IPropertyDescriptorTheme.cs
    │   │   ├── IPrototype.cs
    │   │   ├── IResourceConverter.cs
    │   │   ├── IResourceMetadataService.cs
    │   │   ├── ISchemaLoader.cs
    │   │   ├── ISnapFilter.cs
    │   │   ├── ISnapSettings.cs
    │   │   ├── ITransformable.cs
    │   │   ├── IVisible.cs
    │   │   ├── ManipulatorInfo.cs
    │   │   └── TransformationTypes.cs
    │   ├── LevelEditorCore.vs2010.csproj
    │   ├── Listers
    │   │   ├── LayerLister.cs
    │   │   ├── ResourceLister.cs
    │   │   ├── ResourceMetadataEditor.cs
    │   │   ├── ThumbnailControl.cs
    │   │   └── ThumbnailService.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── PropertyEditing
    │   │   └── CustomPropertyEditingContext.cs
    │   ├── Rendering
    │   │   ├── FrameTime.cs
    │   │   ├── IRenderLoop.cs
    │   │   └── RenderLoopService.cs
    │   ├── Resources
    │   │   ├── Asset16.png
    │   │   ├── Asset24.png
    │   │   ├── Asset32.png
    │   │   ├── Backface16.png
    │   │   ├── Backface24.png
    │   │   ├── Backface32.png
    │   │   ├── bookmark.png
    │   │   ├── cubes.png
    │   │   ├── CustomManip16.png
    │   │   ├── CustomManip24.png
    │   │   ├── CustomManip32.png
    │   │   ├── DefaultTexture.png
    │   │   ├── Document16.png
    │   │   ├── Document24.png
    │   │   ├── Document32.png
    │   │   ├── EditTangent16.png
    │   │   ├── EditTangent24.png
    │   │   ├── EditTangent32.png
    │   │   ├── ExtensionManip16.png
    │   │   ├── ExtensionManip24.png
    │   │   ├── ExtensionManip32.png
    │   │   ├── FlyMode16.png
    │   │   ├── FlyMode24.png
    │   │   ├── FlyMode32.png
    │   │   ├── FolderReference16.png
    │   │   ├── FolderReference24.png
    │   │   ├── FolderReference32.png
    │   │   ├── FourView16.png
    │   │   ├── FourView24.png
    │   │   ├── FourView32.png
    │   │   ├── gameObjectFolder.png
    │   │   ├── gameObject.png
    │   │   ├── game.png
    │   │   ├── GridSnap16.png
    │   │   ├── GridSnap24.png
    │   │   ├── GridSnap32.png
    │   │   ├── group.png
    │   │   ├── HideSelection16.png
    │   │   ├── HideSelection24.png
    │   │   ├── HideSelection32.png
    │   │   ├── HorizontalViews16.png
    │   │   ├── HorizontalViews24.png
    │   │   ├── HorizontalViews32.png
    │   │   ├── InsertPoint16.png
    │   │   ├── InsertPoint24.png
    │   │   ├── InsertPoint32.png
    │   │   ├── instancer.png
    │   │   ├── Isolate16.png
    │   │   ├── Isolate24.png
    │   │   ├── Isolate32.png
    │   │   ├── Lighting16.png
    │   │   ├── Lighting24.png
    │   │   ├── Lighting32.png
    │   │   ├── Linear16.png
    │   │   ├── Linear24.png
    │   │   ├── Linear32.png
    │   │   ├── locator.png
    │   │   ├── MayaTrackball16.png
    │   │   ├── MayaTrackball24.png
    │   │   ├── MayaTrackball32.png
    │   │   ├── MissingFolderReference16.png
    │   │   ├── MissingFolderReference24.png
    │   │   ├── MissingFolderReference32.png
    │   │   ├── Normals16.png
    │   │   ├── Normals24.png
    │   │   ├── Normals32.png
    │   │   ├── Outlined16.png
    │   │   ├── Outlined24.png
    │   │   ├── Outlined32.png
    │   │   ├── PivotManip16.png
    │   │   ├── PivotManip24.png
    │   │   ├── PivotManip32.png
    │   │   ├── polyline.png
    │   │   ├── PolyMesh.png
    │   │   ├── RealTime.png
    │   │   ├── RotateManip16.png
    │   │   ├── RotateManip24.png
    │   │   ├── RotateManip32.png
    │   │   ├── RotateOnSnap16.png
    │   │   ├── RotateOnSnap24.png
    │   │   ├── RotateOnSnap32.png
    │   │   ├── ScaleManip16.png
    │   │   ├── ScaleManip24.png
    │   │   ├── ScaleManip32.png
    │   │   ├── Shadow16.png
    │   │   ├── Shadow24.png
    │   │   ├── Shadow32.png
    │   │   ├── ShowAll16.png
    │   │   ├── ShowAll24.png
    │   │   ├── ShowAll32.png
    │   │   ├── ShowSelection16.png
    │   │   ├── ShowSelection24.png
    │   │   ├── ShowSelection32.png
    │   │   ├── SingleView16.png
    │   │   ├── SingleView24.png
    │   │   ├── SingleView32.png
    │   │   ├── SmoothShading16.png
    │   │   ├── SmoothShading24.png
    │   │   ├── SmoothShading32.png
    │   │   ├── TerrainManip.png
    │   │   ├── Texture16.png
    │   │   ├── Texture24.png
    │   │   ├── Texture32.png
    │   │   ├── Trackball16.png
    │   │   ├── Trackball24.png
    │   │   ├── Trackball32.png
    │   │   ├── TranslateManip16.png
    │   │   ├── TranslateManip24.png
    │   │   ├── TranslateManip32.png
    │   │   ├── VertexSnap16.png
    │   │   ├── VertexSnap24.png
    │   │   ├── VertexSnap32.png
    │   │   ├── VerticalViews16.png
    │   │   ├── VerticalViews24.png
    │   │   ├── VerticalViews32.png
    │   │   ├── WalkMode16.png
    │   │   ├── WalkMode24.png
    │   │   ├── WalkMode32.png
    │   │   ├── Wireframe16.png
    │   │   ├── Wireframe24.png
    │   │   └── Wireframe32.png
    │   ├── Resources.cs
    │   ├── Services
    │   │   └── ResourceConverterService.cs
    │   ├── Utils
    │   │   ├── Annotations.cs
    │   │   ├── Clock.cs
    │   │   ├── DomNodeUtil.cs
    │   │   ├── TransformUtils.cs
    │   │   └── Util.cs
    │   └── VectorMath
    │       ├── AABB.cs
    │       ├── Bound2di.cs
    │       └── NoiseGenerator.cs
    ├── LevelEditorNativeRendering
    │   ├── Commands
    │   │   └── RenderCommands.cs
    │   ├── DomNodeAdapters
    │   │   ├── BoundableObject.cs
    │   │   ├── GridRenderer.cs
    │   │   ├── NativeAttributeInfo.cs
    │   │   ├── NativeGameWorldAdapter.cs
    │   │   └── NativeObjectAdapter.cs
    │   ├── LvEdRenderingEngine
    │   │   ├── Bridge
    │   │   │   ├── GenSchemaObjects.cmd
    │   │   │   ├── GobBridge.cpp
    │   │   │   ├── GobBridge.h
    │   │   │   ├── RegisterRuntimeObjects.cpp
    │   │   │   ├── RegisterRuntimeObjects.h
    │   │   │   ├── RegisterSchemaObjects.cpp
    │   │   │   └── RegisterSchemaObjects.h
    │   │   ├── Core
    │   │   │   ├── ErrorHandler.cpp
    │   │   │   ├── ErrorHandler.h
    │   │   │   ├── FileUtils.cpp
    │   │   │   ├── FileUtils.h
    │   │   │   ├── Hasher.cpp
    │   │   │   ├── Hasher.h
    │   │   │   ├── ImageData.cpp
    │   │   │   ├── ImageData.h
    │   │   │   ├── Logger.cpp
    │   │   │   ├── Logger.h
    │   │   │   ├── NonCopyable.h
    │   │   │   ├── Object.cpp
    │   │   │   ├── Object.h
    │   │   │   ├── PerfTimer.h
    │   │   │   ├── ResUtil.cpp
    │   │   │   ├── ResUtil.h
    │   │   │   ├── StringBlob.h
    │   │   │   ├── StringUtils.cpp
    │   │   │   ├── StringUtils.h
    │   │   │   ├── typedefs.h
    │   │   │   ├── Utils.h
    │   │   │   └── WinHeaders.h
    │   │   ├── DirectX
    │   │   │   ├── DDSTextureLoader
    │   │   │   │   ├── DDSTextureLoader.cpp
    │   │   │   │   └── DDSTextureLoader.h
    │   │   │   ├── DirectXTex
    │   │   │   │   ├── BC4BC5.cpp
    │   │   │   │   ├── BC6HBC7.cpp
    │   │   │   │   ├── BC.cpp
    │   │   │   │   ├── BCDirectCompute.cpp
    │   │   │   │   ├── BCDirectCompute.h
    │   │   │   │   ├── BC.h
    │   │   │   │   ├── DDS.h
    │   │   │   │   ├── DirectXTexCompress.cpp
    │   │   │   │   ├── DirectXTexCompressGPU.cpp
    │   │   │   │   ├── DirectXTexConvert.cpp
    │   │   │   │   ├── DirectXTexD3D11.cpp
    │   │   │   │   ├── DirectXTexDDS.cpp
    │   │   │   │   ├── DirectXTexFlipRotate.cpp
    │   │   │   │   ├── DirectXTex.h
    │   │   │   │   ├── DirectXTexImage.cpp
    │   │   │   │   ├── DirectXTex.inl
    │   │   │   │   ├── DirectXTexMipmaps.cpp
    │   │   │   │   ├── DirectXTexMisc.cpp
    │   │   │   │   ├── DirectXTexNormalMaps.cpp
    │   │   │   │   ├── DirectXTexP.h
    │   │   │   │   ├── DirectXTexPMAlpha.cpp
    │   │   │   │   ├── DirectXTexResize.cpp
    │   │   │   │   ├── DirectXTexTGA.cpp
    │   │   │   │   ├── DirectXTexUtil.cpp
    │   │   │   │   ├── DirectXTexWIC.cpp
    │   │   │   │   ├── Filters.h
    │   │   │   │   ├── Microsoft Public License.rtf
    │   │   │   │   ├── ReadMe.txt
    │   │   │   │   ├── scoped.h
    │   │   │   │   └── Shaders
    │   │   │   │       ├── BC6HEncode.hlsl
    │   │   │   │       ├── BC7Encode.hlsl
    │   │   │   │       ├── Compiled
    │   │   │   │       │   ├── BC6HEncode_EncodeBlockCS.inc
    │   │   │   │       │   ├── BC6HEncode_TryModeG10CS.inc
    │   │   │   │       │   ├── BC6HEncode_TryModeLE10CS.inc
    │   │   │   │       │   ├── BC7Encode_EncodeBlockCS.inc
    │   │   │   │       │   ├── BC7Encode_TryMode02CS.inc
    │   │   │   │       │   ├── BC7Encode_TryMode137CS.inc
    │   │   │   │       │   └── BC7Encode_TryMode456CS.inc
    │   │   │   │       └── CompileShaders.cmd
    │   │   │   ├── DXUtil.cpp
    │   │   │   ├── DXUtil.h
    │   │   │   └── WICTextureLoader
    │   │   │       ├── WICTextureLoader.cpp
    │   │   │       └── WICTextureLoader.h
    │   │   ├── dllmain.cpp
    │   │   ├── FrameTime.h
    │   │   ├── GenCSharp.cmd
    │   │   ├── GobSystem
    │   │   │   ├── BillboardGob.cpp
    │   │   │   ├── BillboardGob.h
    │   │   │   ├── BoxLightGob.cpp
    │   │   │   ├── BoxLightGob.h
    │   │   │   ├── ConeGob.cpp
    │   │   │   ├── ConeGob.h
    │   │   │   ├── ControlPointGob.cpp
    │   │   │   ├── ControlPointGob.h
    │   │   │   ├── CubeGob.cpp
    │   │   │   ├── CubeGob.h
    │   │   │   ├── CurveGob.cpp
    │   │   │   ├── CurveGob.h
    │   │   │   ├── CylinderGob.cpp
    │   │   │   ├── CylinderGob.h
    │   │   │   ├── DirLightGob.cpp
    │   │   │   ├── DirLightGob.h
    │   │   │   ├── GameLevel.cpp
    │   │   │   ├── GameLevel.h
    │   │   │   ├── GameObjectComponent.cpp
    │   │   │   ├── GameObjectComponent.h
    │   │   │   ├── GameObject.cpp
    │   │   │   ├── GameObjectGroup.cpp
    │   │   │   ├── GameObjectGroup.h
    │   │   │   ├── GameObject.h
    │   │   │   ├── LightGob.cpp
    │   │   │   ├── LightGob.h
    │   │   │   ├── Locator.cpp
    │   │   │   ├── Locator.h
    │   │   │   ├── MeshComponent.cpp
    │   │   │   ├── MeshComponent.h
    │   │   │   ├── OrcGob.cpp
    │   │   │   ├── OrcGob.h
    │   │   │   ├── PlaneGob.cpp
    │   │   │   ├── PlaneGob.h
    │   │   │   ├── PointLightGob.cpp
    │   │   │   ├── PointLightGob.h
    │   │   │   ├── PolyLineGob.cpp
    │   │   │   ├── PolyLineGob.h
    │   │   │   ├── PrimitiveShapeGob.cpp
    │   │   │   ├── PrimitiveShapeGob.h
    │   │   │   ├── SkyDome.cpp
    │   │   │   ├── SkyDome.h
    │   │   │   ├── SphereGob.cpp
    │   │   │   ├── SphereGob.h
    │   │   │   ├── SpinnerComponent.cpp
    │   │   │   ├── SpinnerComponent.h
    │   │   │   ├── Terrain
    │   │   │   │   ├── DecorationMap.cpp
    │   │   │   │   ├── DecorationMap.h
    │   │   │   │   ├── LayerMap.cpp
    │   │   │   │   ├── LayerMap.h
    │   │   │   │   ├── TerrainGob.cpp
    │   │   │   │   ├── TerrainGob.h
    │   │   │   │   ├── TerrainMap.cpp
    │   │   │   │   └── TerrainMap.h
    │   │   │   ├── TorusGob.cpp
    │   │   │   └── TorusGob.h
    │   │   ├── LvEdRenderingEngine.cpp
    │   │   ├── LvEdRenderingEngine.h
    │   │   ├── LvEdRenderingEngine.vcxproj
    │   │   ├── LvEdRenderingEngine.vcxproj.filters
    │   │   ├── LvEdRenderingEngine.vs2013.vcxproj
    │   │   ├── LvEdRenderingEngine.vs2013.vcxproj.filters
    │   │   ├── LvEdRenderingEngine.vs2015.vcxproj
    │   │   ├── LvEdRenderingEngine.vs2015.vcxproj.filters
    │   │   ├── LvEdUtils.h
    │   │   ├── Model3d
    │   │   │   ├── AtgiModelFactory.cpp
    │   │   │   ├── AtgiModelFactory.h
    │   │   │   ├── ColladaModelFactory.cpp
    │   │   │   ├── ColladaModelFactory.h
    │   │   │   ├── Model3dBuilder.cpp
    │   │   │   ├── Model3dBuilder.h
    │   │   │   ├── rapidxmlhelpers.cpp
    │   │   │   ├── rapidxmlhelpers.h
    │   │   │   ├── XmlModelFactory.cpp
    │   │   │   └── XmlModelFactory.h
    │   │   ├── rapidxml-1.13
    │   │   │   ├── license.txt
    │   │   │   ├── manual.html
    │   │   │   ├── rapidxml.hpp
    │   │   │   ├── rapidxml_iterators.hpp
    │   │   │   ├── rapidxml_print.hpp
    │   │   │   └── rapidxml_utils.hpp
    │   │   ├── Renderer
    │   │   │   ├── BasicRenderer.cpp
    │   │   │   ├── BasicRenderer.h
    │   │   │   ├── BasicShader.cpp
    │   │   │   ├── BasicShader.h
    │   │   │   ├── BillboardShader.cpp
    │   │   │   ├── BillboardShader.h
    │   │   │   ├── CustomDataAttribute.cpp
    │   │   │   ├── CustomDataAttribute.h
    │   │   │   ├── DeviceManager.cpp
    │   │   │   ├── DeviceManager.h
    │   │   │   ├── Font.cpp
    │   │   │   ├── Font.h
    │   │   │   ├── FontRenderer.cpp
    │   │   │   ├── FontRenderer.h
    │   │   │   ├── FontTypes.h
    │   │   │   ├── GpuResourceFactory.cpp
    │   │   │   ├── GpuResourceFactory.h
    │   │   │   ├── Lights.cpp
    │   │   │   ├── Lights.h
    │   │   │   ├── LineRenderer.cpp
    │   │   │   ├── LineRenderer.h
    │   │   │   ├── Model.cpp
    │   │   │   ├── Model.h
    │   │   │   ├── NormalsShader.cpp
    │   │   │   ├── NormalsShader.h
    │   │   │   ├── Renderable.h
    │   │   │   ├── RenderableNodeCollector.h
    │   │   │   ├── RenderableNodeSet.cpp
    │   │   │   ├── RenderableNodeSet.h
    │   │   │   ├── RenderableNodeSorter.cpp
    │   │   │   ├── RenderableNodeSorter.h
    │   │   │   ├── RenderBuffer.cpp
    │   │   │   ├── RenderBuffer.h
    │   │   │   ├── RenderContext.cpp
    │   │   │   ├── RenderContext.h
    │   │   │   ├── RenderEnums.h
    │   │   │   ├── RenderState.cpp
    │   │   │   ├── RenderState.h
    │   │   │   ├── RenderSurface.cpp
    │   │   │   ├── RenderSurface.h
    │   │   │   ├── RenderUtil.cpp
    │   │   │   ├── RenderUtil.h
    │   │   │   ├── Resource.cpp
    │   │   │   ├── Resource.h
    │   │   │   ├── ScreenMsgPrinter.cpp
    │   │   │   ├── ScreenMsgPrinter.h
    │   │   │   ├── Shader.h
    │   │   │   ├── ShaderLib.cpp
    │   │   │   ├── ShaderLib.h
    │   │   │   ├── ShadowMapGen.cpp
    │   │   │   ├── ShadowMapGen.h
    │   │   │   ├── ShadowMaps.cpp
    │   │   │   ├── ShadowMaps.h
    │   │   │   ├── ShapeLib.cpp
    │   │   │   ├── ShapeLib.h
    │   │   │   ├── SkyDomeShader.cpp
    │   │   │   ├── SkyDomeShader.h
    │   │   │   ├── SwapChain.cpp
    │   │   │   ├── SwapChain.h
    │   │   │   ├── TerrainShader.cpp
    │   │   │   ├── TerrainShader.h
    │   │   │   ├── Texture.cpp
    │   │   │   ├── TexturedShader.cpp
    │   │   │   ├── TexturedShader.h
    │   │   │   ├── Texture.h
    │   │   │   ├── TextureLib.cpp
    │   │   │   ├── TextureLib.h
    │   │   │   ├── TextureRenderSurface.cpp
    │   │   │   ├── TextureRenderSurface.h
    │   │   │   ├── WireframeShader.cpp
    │   │   │   └── WireframeShader.h
    │   │   ├── resource.h
    │   │   ├── ResourceManager
    │   │   │   ├── ResourceManager.cpp
    │   │   │   ├── ResourceManager.h
    │   │   │   ├── TextureFactory.cpp
    │   │   │   └── TextureFactory.h
    │   │   ├── resource.rc
    │   │   ├── Resources
    │   │   │   └── Light.png
    │   │   ├── Shaders
    │   │   │   ├── BasicRenderer.hlsl
    │   │   │   ├── BasicShader.hlsl
    │   │   │   ├── Billboard.hlsl
    │   │   │   ├── Fog.shh
    │   │   │   ├── FontShader.hlsl
    │   │   │   ├── Lighting.shh
    │   │   │   ├── LineShader.hlsl
    │   │   │   ├── NormalsShader.hlsl
    │   │   │   ├── ShadowMapGen.hlsl
    │   │   │   ├── SkyDome.hlsl
    │   │   │   ├── SkySphere.hlsl
    │   │   │   ├── SolidWireframeHelper.shh
    │   │   │   ├── TerrainShader.hlsl
    │   │   │   ├── TexturedShader.hlsl
    │   │   │   └── WireframeShader.hlsl
    │   │   ├── VectorMath
    │   │   │   ├── Camera.cpp
    │   │   │   ├── Camera.h
    │   │   │   ├── CollisionPrimitives.cpp
    │   │   │   ├── CollisionPrimitives.h
    │   │   │   ├── MeshUtil.cpp
    │   │   │   ├── MeshUtil.h
    │   │   │   ├── V3dMath.cpp
    │   │   │   └── V3dMath.h
    │   │   ├── Windows81SDK_vs2010_x64.props
    │   │   └── Windows81SDK_vs2010_x86.props
    │   ├── Manipulators
    │   │   ├── ExtensionManipulator.cs
    │   │   ├── Manipulator.cs
    │   │   ├── RotateManipulator.cs
    │   │   ├── ScaleManipulator.cs
    │   │   ├── TranslateManipulator.cs
    │   │   ├── TranslatePivotManipulator.cs
    │   │   └── TranslatorControl.cs
    │   ├── NativeAnnotations.cs
    │   ├── NativeDesignControl.cs
    │   ├── NativeDesignView.cs
    │   ├── NativeGameEditor.cs
    │   ├── NativeInterop
    │   │   ├── Enums.cs
    │   │   ├── GameEngine.cs
    │   │   ├── ImageData.cs
    │   │   ├── RenderState.cs
    │   │   └── Structs.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── RenderingInterop.vs2010.csproj
    │   ├── Resolvers
    │   │   ├── AssetResolver.cs
    │   │   ├── ResourcePreview.cs
    │   │   ├── TextureThumbnailResolver.cs
    │   │   └── ThumbnailResolver.cs
    │   ├── TextureRenderSurface.cs
    │   └── Util3d.cs
    ├── License.txt
    ├── README.md
    └── SampleLevels
        ├── BasicLevel.lvl
        ├── LightTest.lvl
        └── Terrain.lvl

171 directories, 1999 files

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警