Git Product home page Git Product logo

yuriavgengine's Issues

Need Yuriri Script Sample

尽管Wiki中写了这么多Yuriri的设计思路,但整个repo中并没有任何用Yuriri编写的脚本,只有Halation的Project,而且还无法转换成Yuriri脚本。
希望给出Yuriri脚本的示例。

YuriHalation 新建项目后有很多找不到文件错误。

一部分是你使用了

dinfo = new DirectoryInfo(this.SndDir + @"\path");
后利用

if (dinfo != null)
来判断目录是否存在导致的bug,这样是行不通的,因为 DirectoryInfo 这个东西即使目录不存在也不会为null,要使用dinfo.Exists来确认目录是否存在。修改方案很简单,把这种 if (dinfo != null) 改成 if (dinfo != null&& dinfo.Exists) 即可。

另外一部分我就完全没头绪了我到现在还没有用最新项目中的那套测试项目成功掉起存读档界面,我觉得自己还要跟几天代码。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.