Coder Social home page Coder Social logo

lua-utils's People

Contributors

mr-bogey avatar u0u0 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

lua-utils's Issues

单词拼写错误

Updater.lua 热更文件中 资源列表字段“asserts” 应该为 assets

请教关于TableViewPro加滚动条出现的一些问题

作者你好:
TableViewPro.lua中:给ccui.ScrollView 添加监听事件需要使用接口addEventListenerScrollView

此外请教怎么添加滚动条。
我现在通过:

function TableView:bindSlider(slider, min, max)
	self:registerScriptHandler(function()
		local cur = self:getInnerContainer():getPosition().y
		local all = self:getContentSize().height - self:getInnerContainerSize().height
		local percent = (1 - cur/all) * 100
		
		percent = min + (max-min)/100 * percent
		percent = math.min(max, percent)
		percent = math.max(min, percent)
		slider:setPercent(percent)
	end,cc.TableViewHandlerType.ViewScroll)
end

会导致数据只加载一页,滚动后的区域显示为空白。请教大佬怎么解决。
image

Updater.lua 下载失败判断

if code ~= 200 or code ~= 206 then
	notifyError(downInfo)
	return
end

应改为

if code ~= 200 and code ~= 206 then
	notifyError(downInfo)
	return
end

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.