Use a simple script to achieve powder pile | Maya nParticle简单脚本实现粒子堆叠


Youtube

Maya nParticle only calculates friction/stickness between particles and rigid bodies, not friction is encountered between particles. My guess is the algorithm complexity is too high. Anyway there is two relative easy ways to fake the effect, according to my searching.

想要用一个一包糖粒堆在物体(对又是它..)上的片段,发现Maya的nParticle只计算粒子和Rigid body的摩擦力不计算粒子和粒子间的摩擦力(想来是算法复杂度太高了),所以不管怎么搞最终都会摊成大烧饼,并且还会不停的抽搐.. 查了下大概有两个相对简单的方法

1. hold particles with a invisible rigid body. 2. Use RealFlow, which seems to have much more handy control over particles

I’m not happy with either. 1 is lame. 2 too much trouble, have to get hang of another environment. If I must do scripting, I choose to learn mel.

So the algorithm is:

It’s unlikely to mess with friction as I guessed above. I tried to modify per particle mass to let them stuck in the space. Yea that works but they tend to be headbutted by other particles and flying around.. for science. Later I googled out it’s possible to control force field per particle, with attribute named “Field name”_”option name”. That is to say adding attribute “gravityField1_magnitude” to nParticle2 will grant you control over per particle gravity from the field.

On creation:

[php]
global int $freezeCap=5; //be completely frozen after the cap rounds
global int $gravityPP=500;
global float $dragPP=100;
global float $accelerationTrigger=15; //the speed parameter to trigger ‘I’m free again!", which leads to free droping.
global int $n[100000]; //how many times have the particle been locked
global int $preVel[100000]; //velocity of last frame
global int $locked[100000];

nParticleShape4.dragField1_magnitude=0;
nParticleShape4.gravityField1_magnitude=$gravityPP;

global int $init=1;
if($init==1) {
int $i;
for($i=0;$i<100000;$i++) {
$n[$i]=0;
$locked[$i]=0;
}
$init=0;
}
[/php]

Before dynamics:
[php]
int $id=nParticleShape4.particleId;
float $vel=abs(nParticleShape4.velocity);

//print("nParticleShape2.velocity "+$nParticleShape2.velocity+"\n");

if($vel>$preVel[$id]+$accelerationTrigger) {
$n[$id]=0;
nParticleShape4.dragField1_magnitude=0; //If it’s free again, unlock and erase record
}
else {
$freezeFact=$n[$id]/$freezeCap; //progress bar of locking
if($freezeFact>1)
$freezeFact=1;
$n[$id]+=1;
nParticleShape4.dragField1_magnitude=$freezeFact*$dragPP; //increase drag force depending on locking level
nParticleShape4.gravityField1_magnitude=$gravityPP*(1-$freezeFact)*(1-$freezeFact); //parabola is better according to experiment
nParticleShape4.velocity=<<0,0,0>>;
}

$preVel[$id]=nParticleShape4.velocity;
[/php]

The script is not bad to me.. adjustable parameters are handy. Time efficiency is acceptable (as a former ACMer, I can confirm this is O(n), can’t be better). 20 million particles * 100 frames cost my i7 half an hour. Not perfect but enough for bragging.
1. 弄个透明的动画的rigid body来把粒子圈起来。 2. 用RealFlow,我只用RealFlow模拟水,但是显然那它对粒子的控制比Maya厉害得多。

两个方法我都不高兴,1太不屌爆,2太麻烦,要做很多熟悉另一个环境的工作,且要写脚本,所以不如来学下mel。下了本书叫Maya Python — for Games and Film,翻了一百页发现Python在Maya上基本是庞大的workflow中工程师为了其他人方便写的maya程序,并且也要有mel基础,不是我要的。

总之,思路是:

想要计算摩擦力显然是不现实的,说过了。我先通过改质量的途径让粒子满足条件时失去质量以停在原地不受重力影响,停是能停住但是会被别的particle撞飞.. 非常科学。后来查到可以使用 <力场名>_<属性名> 的方式控制Per Particle的行为,即,给nParticle2添加名为gravityField1_magnitude的attribute程序就会使用它来控制它受到重力场1的magnitude。然后通过DragField让particle稳定。我在注释里详细说。

粒子生成时脚本:

[php]
global int $freezeCap=5; //be completely frozen after the cap rounds
global int $gravityPP=500;
global float $dragPP=100;
global float $accelerationTrigger=15; //the speed parameter to trigger ‘I’m free again!", which leads to free droping.
global int $n[100000]; //how many times have the particle been locked
global int $preVel[100000]; //velocity of last frame
global int $locked[100000];

nParticleShape4.dragField1_magnitude=0;
nParticleShape4.gravityField1_magnitude=$gravityPP;

global int $init=1;
if($init==1) {
int $i;
for($i=0;$i<100000;$i++) {
$n[$i]=0;
$locked[$i]=0;
}
$init=0;
}
[/php]

动态前的脚本:

[php]
int $id=nParticleShape4.particleId;
float $vel=abs(nParticleShape4.velocity);

//print("nParticleShape2.velocity "+$nParticleShape2.velocity+"\n");

if($vel>$preVel[$id]+$accelerationTrigger) {
$n[$id]=0;
nParticleShape4.dragField1_magnitude=0; //If it’s free again, unlock and erase record
}
else {
$freezeFact=$n[$id]/$freezeCap; //progress bar of locking
if($freezeFact>1)
$freezeFact=1;
$n[$id]+=1;
nParticleShape4.dragField1_magnitude=$freezeFact*$dragPP; //increase drag force depending on locking level
nParticleShape4.gravityField1_magnitude=$gravityPP*(1-$freezeFact)*(1-$freezeFact); //parabola is better according to experiment
nParticleShape4.velocity=<<0,0,0>>;
}

$preVel[$id]=nParticleShape4.velocity;
[/php]

个人感觉这个还不错,有很多参数可以控制,效率也还行(前ACMer表示这个就是O(n)..不能再低了),200万粒子100帧i7跑半个小时。显然不完美,蒙人没问题。

10,972 thoughts on “Use a simple script to achieve powder pile | Maya nParticle简单脚本实现粒子堆叠

  1. ee88.com

    I’m amazed, I have to admit. Seldom do I encounter a
    blog that’s equally educative and entertaining, and without a doubt,
    you have hit the nail on the head. The issue is
    something not enough folks are speaking intelligently about.
    Now i’m very happy that I came across this in my search for something concerning this.

    Reply
  2. Narkolog na dom_ktpl

    Москва, всем привет Близкий человек в запое Родные не знают что делать Таблетки не помогают Короче, нарколог приехал за час — услуги нарколога на дом качественно Приехал через 40 минут В общем, вся инфа по ссылке — вызов нарколога москва [url=https://narkolog-na-dom-moskva-abc.ru]https://narkolog-na-dom-moskva-abc.ru[/url] Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

    Reply
  3. Escortlar Istanbul

    I have been browsing on-line greater than 3 hours these days, but I never discovered any fascinating article like yours.
    It is pretty price enough for me. In my opinion, if all site
    owners and bloggers made good content as you did, the web will probably be much more useful than ever before.

    Reply
  4. Rabota v Kazahstane_croi

    Слушайте внимательно То график убийственный Пересмотрел тысячи вакансий Короче, единственный где есть нормальные предложения — работа вахтой в Казахстане без опыта с проживанием Оплата вовремя В общем, сохраняйте себе — вакансии в казахстане [url=https://vakansii.sitsen.kz]вакансии в казахстане[/url] Не сидите без денег Перешлите тому кто ищет работу

    Reply
  5. math tuition singapore

    The intеrest of OMT’s creator, Mr. Justin Tan, radiates tһrough іn mentors,
    inspiring Singapore students tο fаll іn love with math f᧐r examination success.

    Join օur smalⅼ-group ᧐n-site classes іn Singapore fоr customized
    guidance іn a nurturing environment tһat constructs strong foundational mathematics skills.

    Singapore’ѕ focus on critical believing tһrough mathematics highlights thee іmportance of math tuition, which assists trainees develop tһe analytical abilities demanded ƅy the country’s forward-thinking curriculum.

    Ꮃith PSLE mathematics concerns frequently involving real-ԝorld applications,
    tuition ρrovides targeted practice to develop crucial thinking
    skills іmportant foг high scores.

    Tuition promotes advanced analytical abilities, vital fⲟr
    resolving the complex, multi-step questions tһаt define Ⲟ Level mathematics challenges.

    Ϝⲟr thοse going after H3 Mathematics, junior college tuition supplies innovative advice оn research-level subjects tо succeed іn this tough extension.

    Distinctly, OMT complements tһe MOE curriculum wіth а custom program including analysis analyses to customize ⅽontent to each trainee’s toughness.

    Limitless retries оn tests sіa, ƅest foг mastering topics
    ɑnd achieving tһose Ꭺ qualities іn math.

    With global competitors increasing, math tuition settings Singapore pupils
    аs leading performers in worldwide mathematics evaluations.

    Нere iѕ my blog post – math tuition singapore

    Reply
  6. airport transfer

    Amazing issues here. I’m very satisfied to look your article.
    Thank you so much and I’m looking ahead to contact
    you. Will you kindly drop me a mail?

    Reply
  7. Narkolog na dom_lokn

    Здорово, Москва Отец не выходит из штопора Соседи стучат Таблетки не помогают Короче, нарколог приехал за час — наркологическая помощь на дому быстро Осмотрел и поставил капельницу В общем, не потеряйте контакты — нарколог анонимно [url=https://narkolog-na-dom-moskva-rty.ru]https://narkolog-na-dom-moskva-rty.ru[/url] Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

    Reply
  8. Narkolog na dom_qpon

    Приветствую Ситуация критическая Дети напуганы Нужна срочная помощь на дому Короче, нарколог приехал за час — нарколог на дом срочно Осмотрел и поставил капельницу В общем, вся инфа по ссылке — частный нарколог на дом [url=https://narkolog-na-dom-moskva-xyz.ru]частный нарколог на дом[/url] Звоните прямо сейчас Перешлите тем кто в такой же ситуации

    Reply
  9. Narkolog na dom_gzKa

    Доброго дня, земляки Мой друг уже 5 дней в запое Родственники в панике В диспансер тащить страшно Короче, нарколог приехал за час — наркологическая служба на дом профессионально Дал рекомендации и успокоил семью В общем, жмите чтобы сохранить — вызов нарколога на дом анонимно и круглосуточно [url=https://narkolog-na-dom-moskva-qwe.ru]вызов нарколога на дом анонимно и круглосуточно[/url] Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

    Reply
  10. дубликаты номерных знаков в москве с доставкой

    Дубликаты государственных номеров на авто в
    Москве доступны для заказа в кратчайшие сроки
    дубликаты номерных знаков в москве с доставкой
    обращайтесь к нам для получения надежной помощи и
    гарантии результата!

    Reply
  11. mybiourl

    We absolutely love your blog and find most of your post’s to be
    what precisely I’m looking for. Does one offer guest writers to write content for you
    personally? I wouldn’t mind producing a post or elaborating on a few of the subjects you
    write with regards to here. Again, awesome web log!

    Reply
  12. look here

    Great blog! Is your theme custom made or did you download it from somewhere?

    A theme like yours with a few simple adjustements would really make my
    blog stand out. Please let me know where you got your design.
    Bless you

    Reply
  13. watch this vídeo

    Hi, i believe that i noticed you visited my web site so i got here to go back the
    prefer?.I’m trying to to find things to improve my website!I suppose its ok to use a
    few of your ideas!!

    Reply
  14. 일산 홈케어

    비교할 때 살펴볼 기준이 잘 정리되어 있네요.

    특히 공식 안내와 연결되는 부분가 참고됐습니다.
    다음 글도 보겠습니다.

    Reply
  15. tbs car battery shop near me

    Excellent beat ! I wish to apprentice at the same time as you amend your site, how could i subscribe for a blog
    site? The account aided me a appropriate deal. I had been tiny bit familiar of this your broadcast offered
    shiny transparent idea

    Reply
  16. SITUS BODONG

    I think that everything said was actually very logical. However,
    what about this? what if you added a little content? I ain’t suggesting your content isn’t solid., but suppose you added
    a post title to possibly grab folk’s attention? I mean Use a simple script to achieve powder pile | Maya nParticle简单脚本实现粒子堆叠 | Asher.GG
    is kinda boring. You ought to look at Yahoo’s front page and watch how they create article headlines to get viewers interested.
    You might add a video or a pic or two to get people excited about what you’ve written. Just
    my opinion, it might make your posts a little livelier.

    Reply
  17. how old to go to a casino in ontario

    Excellent post. I was checking constantly this blog and I’m impressed!

    Very useful info specifically the last part 🙂 I care
    for such information much. I was seeking this
    particular information for a long time. Thank you and good luck.

    Reply
  18. Mayfair Skin Rejuvenation

    I’m curious to find out what blog platform you are utilizing?
    I’m experiencing some minor security problems with my latest website and
    I would like to find something more safe. Do you have any suggestions?

    Reply
  19. online casino

    With havin so much content and articles do you ever run into any problems of plagorism or copyright violation?
    My website has a lot of exclusive content I’ve either written myself or
    outsourced but it appears a lot of it is popping it up all over the internet without my
    agreement. Do you know any ways to help stop content from being stolen? I’d definitely appreciate it.

    Reply
  20. Rabota v Kazahstane_veOt

    Народ кто ищет работу А жить на что-то надо Работодатели только время тратят Короче, единственный где есть нормальные предложения — работа вахтой в Казахстане без опыта с проживанием График удобный В общем, вся инфа вот здесь — поиск работы в казахстане [url=https://vakansii.trudvsem.kz]поиск работы в казахстане[/url] Найдите нормальную работу Перешлите тому кто ищет работу

    Reply
  21. Rabota v Kazahstane_frkt

    Слушайте внимательно А жить на что-то надо Объездил кучу сайтов Короче, единственный где есть нормальные предложения — работа онлайн Казахстан удаленно Оплата вовремя В общем, смотрите сами по ссылке — работа в казахстане для русских [url=https://rabota.umicum.kz]https://rabota.umicum.kz[/url] Не сидите без денег Перешлите тому кто ищет работу

    Reply
  22. 춘천안마

    제가 출장이 많아서 춘천출장마사지를 자주 찾는데,

    이 정보에서 새로운 팁을 알게 됐어요.
    춘천출장샵 곳마다 분위기가 차이가 이렇게
    큰 줄 미처 몰랐어요.
    나중에 춘천힐링마사지를 받을 때 이 포스팅을 다시 볼게요.

    좋은 글 감사합니다!
    꼭 한 번 이용해 보세요!

    Also visit my site – 춘천안마

    Reply
  23. 51game

    Hello, I think your blog might be having browser compatibility issues.

    When I look at your blog site in Opera, it looks fine but when opening in Internet Explorer, it has some overlapping.
    I just wanted to give you a quick heads up! Other then that, excellent blog!

    Reply
  24. muB

    Осознанный гемблинг — это подход к казино, основанный на самоограничении и осознании рисков.
    Эта концепция предполагает осознанное ограничение продолжительности и денег на игру.
    Каждый участник должен предварительно определять пределы потерь и неукоснительно их соблюдать.
    https://pilot-club.ru/info/2026-06-24-tsar-probka-na-malyshevskom-mostu-kak-zator-prevratilsya-v-polosu-stoyaniya/

    Reply
  25. math tuition singapore

    OMT’s flexible knowing tools personalize tһe journey, transforming mathematics іnto ɑ beloved buddy ɑnd inspiring unwavering examination dedication.

    Experience flexible knowing anytime, аnywhere tһrough OMT’ѕ
    comprehensive online e-learning platform, featuring nlimited access tⲟ video lessons
    and interactive tests.

    Singapore’ѕ world-renowned mathematics curriculum
    highlights conceptual understanding ⲟver simple
    calculation, mаking math tuition crucial fоr trainees
    to grasp deep concepts ɑnd excel іn national exams like
    PSLE and Օ-Levels.

    primary school tuition iis ᴠery impοrtant for
    PSLE as it ρrovides restorative support fоr topics ⅼike entire numbers аnd
    measurements, ensuring no foundational weak poіnts continue.

    Math tuition ѕhows reliable time management methods, aiding secondary pupils fuⅼl OLevel tests ѡithin thе allocated period wіthout rushing.

    Вy offering substantial exercise ԝith past Α Level exam papers, math tuition acquaints trainees ԝith question formats аnd noting schemes for optimum
    performance.

    OMT’ѕ customized mathematics curriculum distinctively supports MOE’ѕ by providing
    extended protection on topics ⅼike algebra, with exclusive faster wаys fօr secondary pupils.

    OMT’ѕ on-line tuition conserves cash ߋn transport lah,
    enabling mօre focus on sturies аnd enhanced mathematics outcomes.

    Ӏn Singapore, wһere parental involvement is essential, math tuition ⲣrovides organized support fօr homе reinforcement tоwards tests.

    Ꮇy page; math tuition singapore

    Reply
  26. Rabota v Kazahstane_dioi

    Народ кто ищет работу А жить на что-то надо Объездил кучу сайтов Короче, нашел отличный сайт — сайт для работы без посредников График удобный В общем, смотрите сами по ссылке — как искать работу в казахстане [url=https://vakansii.sitsen.kz]как искать работу в казахстане[/url] Найдите нормальную работу Перешлите тому кто ищет работу

    Reply
  27. muB

    Mindful gaming is a set of principles that ensure betting stays a recreational activity rather than a source of stress or loss.
    It involves establishing personal boundaries on duration and wagers, as well as recognising the indicators of harmful behaviour.
    Ultimately, this approach encourages informed choices and helps users to keep control over their gaming habits.
    https://e-transavto.ru/read/moskovskie-aeroporty-vozobnovili-polyoty-posle-udarov-bespilotnykh-letatelnykh-apparatov-451/

    Reply
  28. math tutor

    OMT’s concentrate on metacognition educates pupils tօ delight іn considегing mathematics, fostering affection and drive f᧐r remarkable examination outcomes.

    Dive іnto self-paced mathematics mastery ԝith OMT’s 12-month
    e-learning courses, compⅼete with practice worksheets ɑnd recorded
    sessions fоr extensive revision.

    Singapore’s focus ߋn crucial thinking tһrough mathematics highlights tһe impⲟrtance of math tuition, ԝhich assists students develop the analytical skills required Ьy the country’s forward-thinking syllabus.

    primary school tuition іs necessary for developing strength ɑgainst
    PSLE’s challenging questions, ѕuch ɑs tһose on likelihood and basic statistics.

    Βy offering considerable experiment рast O Level documents, tuition furnishes trainees ᴡith knowledge аnd the ability to anticipate question patterns.

    Customized junior college tuition helps connect tһe gap from O Level to A Level
    math, mɑking certain pupils adapt to tһe increased roughness аnd deepness called for.

    OMT’s custom-designed curriculum uniquely boosts tһe MOE structure Ƅy supplying thematic units thɑt connect mathematic
    subjects ɑcross primary to JC degrees.

    Gamified aspects mаke alteration enjoyable lor, encouraging even more practice and leading tο quality enhancements.

    Tuition subjects pupils tо varied inquiry kinds, widening thеiг preparedness foг unpredictable Singapore
    math examinations.

    Ꮋere is mmy web page math tutor

    Reply
  29. 888starz_jvkn

    يقدم 888starz تصميمًا معرّبًا سلسًا وقائمة تدعم عشرات اللغات.

    يتيح 888starz أكثر من مئتين وخمسين طاولة روليت وبلاك جاك مباشرة في أي وقت.

    يمكن الرهان على أحداث من دوري الأبطال إلى مباريات مصر المحلية.

    ولا تقتصر العروض على الترحيب بل تشمل كاش باك ورهانات مجانية وبطولات.

    يوفر 888starz الدفع عبر Visa و Mastercard و Skrill والكريبتو المتنوع بحد إيداع منخفض.

    888starz [url=http://www.888starzs2.com]888 starz[/url]

    Reply
  30. Narkolog na dom_rukn

    Доброго вечера, земляки Отец не выходит из штопора Родные не знают что делать Таблетки не помогают Короче, нарколог приехал за час — вызов нарколога на дом недорого Дал рекомендации и успокоил семью В общем, не потеряйте контакты — врач нарколог на дом анонимно и круглосуточно [url=https://narkolog-na-dom-moskva-rty.ru]https://narkolog-na-dom-moskva-rty.ru[/url] Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

    Reply
  31. 888starz_pdkn

    يجد المستخدم واجهة عربية مريحة مدعومة بأكثر من 50 لغة.

    ينفرد الموقع بمجموعة 888Games الخاصة ذات النتائج السريعة.

    يقدم 888starz تغطية للدوريات الأوروبية والمنافسات المصرية.

    ينتظر اللاعبين النشطين برنامج أسبوعي من كاش باك وجوائز.

    يقبل الموقع البطاقات والمحافظ إلى جانب أكثر من 50 عملة رقمية مثل BTC و USDT.

    888starz [url=https://888starzs2.com/]888starz[/url]

    Reply
  32. 888starz_grkn

    يفتح 888starz أمام لاعبي مصر بوابة رسمية واحدة تجمع آلاف الألعاب وعشرات الرياضات.

    تتجاوز مكتبة 888starz أربعة آلاف عنوان سلوت في تحديث مستمر.

    يوفر الموقع رهانًا فوريًا وإحصاءات مباشرة على المباريات الجارية.

    ولا تقتصر العروض على الترحيب بل تشمل كاش باك ورهانات مجانية وبطولات.

    يوفر 888starz الدفع عبر Visa و Mastercard و Skrill والكريبتو المتنوع بحد إيداع منخفض.

    888starz [url=http://www.888starzs2.com/]https://888starzs2.com/[/url]

    Reply
  33. Rabota v Kazahstane_ypOt

    Слушайте внимательно Замучился я уже искать нормальную работу Везде одно и то же Короче, реально рабочий вариант — сайт для работы без посредников Оплата вовремя В общем, там все вакансии — найти работу в казахстане [url=https://vakansii.trudvsem.kz]https://vakansii.trudvsem.kz[/url] Найдите нормальную работу Перешлите тому кто ищет работу

    Reply
  34. Rabota v Kazahstane_pnkt

    Народ кто ищет работу То вообще без опыта не берут Везде одно и то же Короче, реально рабочий вариант — трудоустройство в Казахстане официальное График удобный В общем, смотрите сами по ссылке — работа вахтовым методом в казахстане для женщин [url=https://rabota.umicum.kz]https://rabota.umicum.kz[/url] Не сидите без денег Перешлите тому кто ищет работу

    Reply
  35. shkola onlain_yxon

    Родители отзовитесь Ребёнок уставший, не высыпается А эти бесконечные поборы Короче, нашли отличный вариант — онлайн класс с индивидуальным подходом Учителя настоящие профи В общем, там программа и условия — ломоносов скул онлайн [url=https://shkola-onlajn-dyk.ru]https://shkola-onlajn-dyk.ru[/url] Не мучайте детей Перешлите другим родителям

    Reply
  36. Narkolog na dom_qlpl

    Москва, всем привет Муж просто потерял контроль Жена в панике Нужен специалист прямо сейчас Короче, единственный кто реально помог — наркологическая служба на дом профессионально Приехал через 40 минут В общем, жмите чтобы сохранить — наркологическая помощь на дому круглосуточно [url=https://narkolog-na-dom-moskva-abc.ru]наркологическая помощь на дому круглосуточно[/url] Нарколог на дом — это быстро и эффективно Перешлите тем кто в такой же ситуации

    Reply
  37. Narkolog na dom_oeon

    Здорова, народ Отец не выходит из штопора Соседи стучат в стену В больницу тащить страшно Короче, спас только этот врач — вызов нарколога на дом недорого Осмотрел и поставил капельницу В общем, жмите чтобы сохранить — врач нарколог выезд на дом [url=https://narkolog-na-dom-moskva-xyz.ru]врач нарколог выезд на дом[/url] Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

    Reply
  38. Narkolog na dom_foKa

    Здорова, народ Отец не встаёт с дивана Родственники в панике Домашние методы бесполезны Короче, единственный кто реально помог — нарколог на дом круглосуточно без выходных Осмотрел и поставил капельницу В общем, не потеряйте контакты — вывод из запоя доктор на дом [url=https://narkolog-na-dom-moskva-qwe.ru]вывод из запоя доктор на дом[/url] Звоните прямо сейчас Перешлите тем кто в такой же ситуации

    Reply
  39. shkola onlain_wbEi

    Слушайте кто устал от обычной школы Задолбали эти сборы в 7 утра Нервный как спичка Короче, реально удобный формат — школа дистанционно без стресса и нервов Ребёнок реально понимает материал В общем, там программа и условия — ломоносова скул [url=https://shkola-onlajn-nvc.ru]https://shkola-onlajn-nvc.ru[/url] Хватит мучить себя и ребёнка Перешлите другим родителям

    Reply
  40. shkola onlain_xgKn

    Мамы и папы отзовитесь Каждое утро как на войну собираться А знаний реальных ноль Короче, реально крутая система — онлайн школа Москва с учителями профи Никаких сборов в 8 утра В общем, там программа и условия — Переходите на нормальное обучение Перешлите другим родителям

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *