We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
리소스를 관리하는 방법을 찾아보자.
리소스란 blob 형태의 이미지, 비디오, 오디오, 기타 등등의 어떤 데이타를 말한다.
이런 리소스는 data:uri 형태로 표현할 수 있지만 렌더링을 하는 입장에서 너무 큰 datauri 문자열을 속성으로 가지고 있어야 하는 부담이 생긴다.
그래서 실제로 가지고 있는 값과 표현하는 값을 분리 해서 맞출려고 한다.
The text was updated successfully, but these errors were encountered:
svg 필터도 중앙에서 관리했는데 개별 객체로 분리 시켜야 할 듯 ,
공통으로 쓰이는건 카피하고 개별로 설정 할 수 있도록
Sorry, something went wrong.
filter: svg(#id) svgfilters: { 'id': {...} }
모든 리소스는 id 베이스로 관리된다 .
project : { assets: [ id, id, id, id, ] }
형태로 들어가고 실제 내용은 modelManager 안에 들어가자.
easylogic
No branches or pull requests
리소스를 관리하는 방법을 찾아보자.
리소스란 blob 형태의 이미지, 비디오, 오디오, 기타 등등의 어떤 데이타를 말한다.
이런 리소스는 data:uri 형태로 표현할 수 있지만 렌더링을 하는 입장에서 너무 큰 datauri 문자열을 속성으로 가지고 있어야 하는 부담이 생긴다.
그래서 실제로 가지고 있는 값과 표현하는 값을 분리 해서 맞출려고 한다.
The text was updated successfully, but these errors were encountered: